Skip to content

Commit

Permalink
add skipped and partial test for #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Nov 25, 2021
1 parent 272475e commit ce96a97
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions server/src/test/documentHighlightsFixtures/csharp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,31 @@ class E {}
class Foo<[[E]]> {
[[E]] getItem() {}
}
--- prop vs arg, 1
class A {
string S;
void Foo(string [[S]]) {
this.S = [[S]];
}
}
--- prop vs arg, 2
class A {
string S;
void Foo(string [[S]]) {
[[S]] = 'aaa' + [[S]];
}
}
--- prop vs arg, 3
class A {
string [[S]];
void Foo(string E) {
[[S]] = E;
}
}
--- /SKIP/ prop vs arg, 4
class A {
string [[S]];
void Foo(string E) {
this.[[S]] = E;
}
}

0 comments on commit ce96a97

Please sign in to comment.