Skip to content

Commit

Permalink
refactor: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
furesoft committed Nov 10, 2024
1 parent fb8e060 commit 1055f4d
Show file tree
Hide file tree
Showing 98 changed files with 928 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ bld/
Generated\ Files/

# MSTest test Results
[Tt]est[Rr]esult*/
[Tt]est[Rr]esults/*.received*
[Tt]est[Rr]esults/*.swp
[Bb]uild[Ll]og.*

# NUnit
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 9; ,
Document: {
Filename: test.src,
Source: 0b10_01,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
$type: TestResult,
ParsedTree: a; ((b + ((c * d) ^ e)) - (f / g)),
Document: {
Filename: test.src,
Source: a = b + c * d ^ e - f / g,
Messages: [
test.src:1:3 Error: Failed to parse token '='
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
$type: TestResult,
ParsedTree: 4294967295; ,
Document: {
Filename: test.src,
Source: // this is a real long number
0b11111111_11111111_11111111_11111111,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (a -> b); ,
Document: {
Filename: test.src,
Source: a -> b,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (-42,5); 13,
Document: {
Filename: test.src,
Source: -42.5;13,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: True; ,
Document: {
Filename: test.src,
Source: TrUe,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: True; ,
Document: {
Filename: test.src,
Source: true,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
$type: TestResult,
ParsedTree: a; bc; ,
Document: {
Filename: test.src,
Source: a = b = c,
Messages: [
test.src:1:3 Error: Failed to parse token '=',
test.src:1:7 Error: Failed to parse token '='
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a = b) = c); ,
Document: {
Filename: test.src,
Source: a = b = c,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a * b) / c); ,
Document: {
Filename: test.src,
Source: a * b / c,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 42,5; ,
Document: {
Filename: test.src,
Source: 42.5,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a) (b ? c : d), (e + f)); ,
Document: {
Filename: test.src,
Source: a(b ? c : d, e + f),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((((a) b)) c); ,
Document: {
Filename: test.src,
Source: a(b)(c),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a) b, c); ,
Document: {
Filename: test.src,
Source: a(b, c),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (((a) b) + ((c) d)); ,
Document: {
Filename: test.src,
Source: a(b) + c(d),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (((a . b)) c); ,
Document: {
Filename: test.src,
Source: a.b(c),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
$type: TestResult,
ParsedTree: ((a) (b ? c : #Invalid(:))); d(e + f); ,
Document: {
Filename: test.src,
Source: a(b ? c : d, e + f),
Messages: [
test.src:1:9 Error: Unknown Character ':',
test.src:1:9 Error: Expected token : found #invalid(:),
test.src:1:3 Error: ) is missing,
test.src:1:12 Error: Failed to parse token ',',
test.src:1:19 Error: Failed to parse token ')'
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a) (b ? c : d), (e + f)); ,
Document: {
Filename: test.src,
Source: a(b ? c : d, e + f),
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: #Invalid(>>),
Document: {
Filename: test.src,
Source: a + (b + c) + d,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: ((a + ((b + c))) + d); ,
Document: {
Filename: test.src,
Source: a + (b + c) + d,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 255; ,
Document: {
Filename: test.src,
Source: 0xF_F,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 255; ; ,
Document: {
Filename: test.src,
Source: /* i need something new*/0xff,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 42; ,
Document: {
Filename: test.src,
Source: 42,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (not 5); ,
Document: {
Filename: test.src,
Source: not 5,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (((a!)!)!); ,
Document: {
Filename: test.src,
Source: a!!!,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (-(a * b)); ,
Document: {
Filename: test.src,
Source: -a * b,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (-42,5); ,
Document: {
Filename: test.src,
Source: -42.5,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (-42); ,
Document: {
Filename: test.src,
Source: -42,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (42 . #Invalid()); ,
Document: {
Filename: test.src,
Source: 42.,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 21; ,
Document: {
Filename: test.src,
Source: 0b10101,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 310000; ,
Document: {
Filename: test.src,
Source: 3.1e5,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: 1000000; ,
Document: {
Filename: test.src,
Source: 1_000_000,
Messages: []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
$type: TestResult,
ParsedTree: (i++); ,
Document: {
Filename: test.src,
Source: i++,
Messages: []
}
}
Loading

0 comments on commit 1055f4d

Please sign in to comment.