We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 952544a + e35f714 commit bfc0dd3Copy full SHA for bfc0dd3
2 files changed
examples/lang.lex
@@ -19,7 +19,7 @@
19
20
rules: [
21
["\\/\\/.*", `/* skip comments */`],
22
- ["\/\\*(.|\\s)*?\\*\/", `/* skip comments */`],
+ ["\/\\*[\\s\\S]*?\\*\/", `/* skip comments */`],
23
24
[`\\s+`, `/* skip whitespace */`],
25
examples/test.lang
@@ -183,6 +183,8 @@ class Point3D extends Point {
183
}
184
185
186
+new Point.Other();
187
+
188
let p = new Point3D(10, 20, 30);
189
190
0 commit comments