-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82b03c4
commit db3517a
Showing
16 changed files
with
778 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"alnum", | ||
"assgn", | ||
"augmentedassign", | ||
"binop", | ||
"blockstore", | ||
"bounceable", | ||
"codegen", | ||
"decompile", | ||
"Decompiled", | ||
"decompiler", | ||
"decompiles", | ||
"decompilation", | ||
"decompiling", | ||
"Descr", | ||
"disasm", | ||
"divmod", | ||
"dnsresolve", | ||
"elseifnot", | ||
"Fift", | ||
"forall", | ||
"funs", | ||
"funcfiftlib", | ||
"idict", | ||
"initof", | ||
"infixl", | ||
"infixr", | ||
"ipfs", | ||
"ipld", | ||
"jettons", | ||
"jsxdev", | ||
"langle", | ||
"lparen", | ||
"lvalue", | ||
"masterchain", | ||
"maxint", | ||
"minmax", | ||
"mintable", | ||
"multiformats", | ||
"Korshakov", | ||
"nocheck", | ||
"noexcept", | ||
"Nonterminal", | ||
"nonterminal", | ||
"Neovim", | ||
"Offchain", | ||
"Parens", | ||
"POSIX", | ||
"prando", | ||
"rangle", | ||
"rparen", | ||
"rugpull", | ||
"rugpulled", | ||
"sctx", | ||
"seqno", | ||
"shiki", | ||
"Stateinit", | ||
"stdlib", | ||
"struct", | ||
"structs", | ||
"subtyping", | ||
"testdata", | ||
"Topup", | ||
"typechecker", | ||
"udict", | ||
"uintptr", | ||
"uncons", | ||
"uninit", | ||
"unixfs", | ||
"workchain", | ||
"worklist", | ||
"powerset", | ||
"semilattice", | ||
"fixpoint", | ||
"graphviz", | ||
"idxs", | ||
"unmarshalled", | ||
"fixpoints", | ||
"Datalog", | ||
"lvalues", | ||
"callees", | ||
"intraprocedural", | ||
"subdirs", | ||
"привет", | ||
"PUSHREF", | ||
"PUSHSLICE", | ||
"SETINDEXVARQ" | ||
], | ||
"flagWords": [], | ||
"ignorePaths": [ | ||
"tags", | ||
"*.fif", | ||
"node_modules", | ||
"dist" | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
fun test(): Int { | ||
let a: Int = 10 / 3; // Division operation | ||
let c: Int = 2; | ||
let taintedWitha1: Int = 2 - a; | ||
let taintedWitha2: Int = 55 + taintedWitha1; | ||
let result: Int = taintedWitha2 * c; // Error: Using a variable tainted with division | ||
let taintedWithA1: Int = 2 - a; | ||
let taintedWithA2: Int = 55 + taintedWithA1; | ||
let result: Int = taintedWithA2 * c; // Error: Using a variable tainted with division | ||
return result; | ||
} | ||
|
Oops, something went wrong.