Skip to content

Commit 8426c68

Browse files
committed
Add tests for /**/ comment
Signed-off-by: Maximilian Krög <[email protected]>
1 parent 02fa668 commit 8426c68

File tree

3 files changed

+391
-0
lines changed

3 files changed

+391
-0
lines changed

tests/Lexer/LexerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public static function lexProvider(): array
7979
['lexer/lexOperator'],
8080
['lexer/lexOperatorStarIsArithmetic'],
8181
['lexer/lexOperatorStarIsWildcard'],
82+
['lexer/lexEmptyCStyleComment'],
8283
['lexer/lexString'],
8384
['lexer/lexStringErr1'],
8485
['lexer/lexSymbol'],
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SELECT /**/ 1
2+
SELECT /*+*/ 1
3+
SELECT /***/ 1
4+
SELECT /** */ 1
5+
SELECT /* **/ 1

0 commit comments

Comments
 (0)