Git Product home page Git Product logo

Comments (3)

Kiroto avatar Kiroto commented on June 14, 2024

Here's another situation that returns similar results, this time with a lexer.
I got this while playing around with the sample.

Lexer contents
// DELETE THIS CONTENT IF YOU PUT COMBINED GRAMMAR IN Parser TAB
lexer grammar ExprLexer;

OP : '+' | '-' | '*' | '/';
AND : 'and' ;
OR : 'or' ;
NOT : 'not' ;
EQ : '=' ;
COMMA : ',' ;
SEMI : ';' ;
LPAREN : '(' ;
RPAREN : ')' ;
LCURLY : '{' ;
RCURLY : '}' ;

INT : [0-9]+ ;
TEXT: [a-zA-Z_0-9]+;
ID: [a-zA-Z_][a-zA-Z_0-9]* ;
WS: [ \t\n\r\f]+ -> skip ;
STR_DEL: '"';
Parser contents
parser grammar ExprParser;
options { tokenVocab=ExprLexer; }

program
    : (stat | def)* EOF
    ;

stat: (assignment
    | func) SEMI
    ;

assignment : ID EQ expr;

def : ID '(' ID (',' ID)* ')' '{' stat* '}' ;

expr: ID
    | INT
    | str
    | func
    | 'not' expr
    | expr 'and' expr
    | expr 'or' expr
    | expr OP expr
    ;

func : ID LPAREN (expr (',' expr)*)? RPAREN ;

str : '"' TEXT? '"';
Input
f(x,y) {
    a = 3+foo;
    b = foo * bar;
    z = x and y;
    rank = zz("banana");
    zz();
}

banana = richi;

It, however, (doesn't) work(s) as expected if I change the lexer to the following (Moving the TEXT below the ID).

Lexer contents
// DELETE THIS CONTENT IF YOU PUT COMBINED GRAMMAR IN Parser TAB
lexer grammar ExprLexer;

OP : '+' | '-' | '*' | '/';
AND : 'and' ;
OR : 'or' ;
NOT : 'not' ;
EQ : '=' ;
COMMA : ',' ;
SEMI : ';' ;
LPAREN : '(' ;
RPAREN : ')' ;
LCURLY : '{' ;
RCURLY : '}' ;

INT : [0-9]+ ;
ID: [a-zA-Z_][a-zA-Z_0-9]* ;
TEXT: [a-zA-Z_0-9]+;
WS: [ \t\n\r\f]+ -> skip ;
STR_DEL: '"';

from antlr4-lab.

parrt avatar parrt commented on June 14, 2024

hi. yes, I believe this is caused by the same bug we've had that we are generating improper Json.

from antlr4-lab.

parrt avatar parrt commented on June 14, 2024

Fixed by #59

from antlr4-lab.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.