-
Notifications
You must be signed in to change notification settings - Fork 15
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
Showing
10 changed files
with
115 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
a:BoolValue:true | ||
b:BoolValue:false | ||
a_1:BoolValue:false | ||
a_2:BoolValue:true | ||
a_3:BoolValue:false | ||
b_1:BoolValue:true | ||
b_2:BoolValue:false | ||
b_3:BoolValue:false |
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,10 @@ | ||
a = true; | ||
b = false; | ||
|
||
a_1 = a.not(); // false | ||
a_2 = a.and(true); // true | ||
a_3 = a.and(false); // false | ||
|
||
b_1 = b.not(); // true | ||
b_2 = b.and(true); // false | ||
b_3 = b.and(false); // false |
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,9 @@ | ||
a:StringValue:"79c2b46ce2594ecbcb5b73e928345492" | ||
b:StringValue:"d41d8cd98f00b204e9800998ecf8427e" | ||
c:StringValue:"3f3b08eca62c21d76256e6e1d0b8bf99f4efbe376f64335b72f4163a8fc50dba" | ||
d:StringValue:"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" | ||
e:StringValue:"cfcd208495d565ef66e7dff9f98764da" | ||
f:StringValue:"c4ca4238a0b923820dcc509a6f75849b" | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException |
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,12 @@ | ||
// pragma:one_liners | ||
a = hash_md5("ahoj"); | ||
b = hash_md5(""); | ||
c = hash_sha256("ahoj"); | ||
d = hash_sha256(""); | ||
|
||
e = hash_md5(0); | ||
f = hash_md5(1); | ||
|
||
_ex = hash_sha256([]); | ||
_ex = hash_sha256(true); | ||
_ex = hash_sha256(null); |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException | ||
EX:Smuuf\Primi\ErrorException |
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,28 @@ | ||
// pragma:one_liners | ||
|
||
// Cannot insert arrays into strings. | ||
_tmp = "ahoj"; _tmp[999] = [] | ||
// Cannot insert arrays into numbers. | ||
_tmp = 123; _tmp[999] = [] | ||
// Cannot insert arrays into bools. | ||
_tmp = true; _tmp[999] = [] | ||
// Cannot insert arrays into regexes. | ||
_tmp = r"abc"; _tmp[999] = [] | ||
|
||
// Cannot insert nulls into strings. | ||
_tmp = "ahoj"; _tmp[999] = null | ||
// Cannot insert nulls into numbers. | ||
_tmp = 123; _tmp[999] = null | ||
// Cannot insert nulls into bools. | ||
_tmp = true; _tmp[999] = null | ||
// Cannot insert nulls into regexes. | ||
_tmp = r"abc"; _tmp[999] = null | ||
|
||
// Cannot insert bools into strings. | ||
_tmp = "ahoj"; _tmp[999] = true | ||
// Cannot insert nulls into numbers. | ||
_tmp = 123; _tmp[999] = true | ||
// Cannot insert nulls into bools. | ||
_tmp = true; _tmp[999] = true | ||
// Cannot insert nulls into regexes. | ||
_tmp = r"abc"; _tmp[999] = true |