Revert "ci(tests): drop flaky wing parser tests"

This reverts commit f08a9d97f7.

(Fixed by skipping bindings when generating.)
This commit is contained in:
Christian Clason 2024-04-14 13:09:19 +02:00
parent 9a39ec072a
commit bfa217af76
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,19 @@
bring cloud;
// <- @keyword
class Foo {
// <- @keyword
// ^ @variable
// ^ @punctuation.bracket
name: str;
//^ @variable.member
// ^ @type.builtin
// ^ @punctuation.delimiter
new(name: str) {
//^ @keyword
// ^ @variable
this.name = name;
// ^ @punctuation.delimiter
// ^ @operator
}
}

View file

@ -0,0 +1,4 @@
test1.test2.test3();
// <- @variable
// ^ @variable.member
// ^ @function.method.call