Skip to content

Commit 76571f8

Browse files
committed
Fix tests
1 parent 46c8a7d commit 76571f8

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

asm/ptx/ptx-isa-1.0/PTXLexer.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ LEU : '.leu';
192192
GTU : '.gtu';
193193
GEU : '.geu';
194194
NUM : '.num';
195-
NAN : '.nan';
195+
NAN_ : '.nan';
196196
HI : '.hi';
197197
LO : '.lo';
198198
WIDE : '.wide';

asm/ptx/ptx-isa-1.0/PTXParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ cmp_op
300300
| GTU
301301
| GEU
302302
| NUM
303-
| NAN
303+
| NAN_
304304
;
305305

306306
bool_op

elixir/desc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<desc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../_scripts/desc.xsd">
3-
<!-- Although they work, the Go and Python targets are excluded since they are very slow -->
4-
<targets>CSharp;Dart;Java;JavaScript;PHP;TypeScript</targets>
3+
<!-- Although they work, the Go, PHP, and Python targets are excluded since they are very slow -->
4+
<targets>CSharp;Dart;Java;JavaScript;TypeScript</targets>
55
</desc>

icon/icon.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3535

3636
grammar icon;
3737

38-
start
38+
start_
3939
: prog EOF
4040
;
4141

lark/LarkParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ options {
77
tokenVocab = LarkLexer;
88
}
99

10-
start
10+
start_
1111
: item* EOF
1212
;
1313

sieve/sieve.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3939

4040
grammar sieve;
4141

42-
start
42+
start_
4343
: commands EOF
4444
;
4545

smtlibv2/SMTLIBv2.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ UndefinedSymbol
571571

572572
// Starting rule(s)
573573

574-
start
574+
start_
575575
: logic EOF
576576
| theory_decl EOF
577577
| script EOF

wavefront/WavefrontOBJ.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ grammar WavefrontOBJ;
1111

1212
// PARSER RULES
1313

14-
start
14+
start_
1515
: NL* (statement (NL+ | EOF))+
1616
;
1717

0 commit comments

Comments
 (0)