Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
scgkiran committed Nov 4, 2024
1 parent 7204ac3 commit 6df3767
Show file tree
Hide file tree
Showing 8 changed files with 3,635 additions and 4,640 deletions.
9 changes: 5 additions & 4 deletions grammar/FuncTestCaseLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ options {

Whitespace : [ \t\n\r]+ -> channel(HIDDEN) ;

SubstraitScalarTest: '### SUBSTRAIT_SCALAR_TEST:';
SubstraitInclude: '### SUBSTRAIT_INCLUDE:';
TripleHash: '###';
SubstraitScalarTest: 'SUBSTRAIT_SCALAR_TEST';
SubstraitInclude: 'SUBSTRAIT_INCLUDE';

FormatVersion
: 'v' DIGIT+ ('.' DIGIT+)?
Expand All @@ -21,8 +22,8 @@ DescriptionLine

ErrorResult: '<!ERROR>';
UndefineResult: '<!UNDEFINED>';
Overflow: 'overlfow';
Rounding: 'rounding';
Overflow: 'OVERLFOW';
Rounding: 'ROUNDING';
Error: 'ERROR';
Saturate: 'SATURATE';
Silent: 'SILENT';
Expand Down
4 changes: 2 additions & 2 deletions grammar/FuncTestCaseParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ header
;

version
: SubstraitScalarTest FormatVersion
: TripleHash SubstraitScalarTest Colon FormatVersion
;

include
: SubstraitInclude StringLiteral (Comma StringLiteral)*
: TripleHash SubstraitInclude Colon StringLiteral (Comma StringLiteral)*
;

testGroupDescription
Expand Down
356 changes: 0 additions & 356 deletions tests/coverage/antlr_parser/FuncTestCaseLexer.interp

This file was deleted.

Loading

0 comments on commit 6df3767

Please sign in to comment.