How to implement a correct If Then Else Statement in an Antlr Grammar?Putting a simple if-then-else statement on one lineANTLR/Grammar issue: calculator languageAntlr left recursiveANTLR check if commontree is correct or How to check if given input matches the ANTLR grammar?How to implement if-else statement in XSLT?boolean and arithmetic expression grammar in ANTLRif else statement in AngularJS templatesmincaml grammar in antlr4„Erratic“ grammar parsing by JavaCC for the IfStatement?How to use *ngIf else?

Is it a good idea to leave minor world details to the reader's imagination?

Does the Prepare Food ability from Cook's Utensils stack?

Can an integer optimization problem be convex?

If an object moving in a circle experiences centripetal force, then doesn't it also experience centrifugal force, because of Newton's third law?

Should the average user with no special access rights be worried about SMS-based 2FA being theoretically interceptable?

Should we use wheatstone bridges nowadays?

Designing a time thief proof safe

Hangman Game (YAHG)

Is it impolite to ask for an in-flight catalogue with no intention of buying?

Hilbert's hotel: why can't I repeat it infinitely many times?

Suffocation while cooking under an umbrella?

Why does NASA publish all the results/data it gets?

A high quality contribution but an annoying error is present in my published article

What is the meaning of "heutig" in this sentence?

relating two diagrams in tikzcd

Does wetting a beer glass change the foam characteristics?

Which place in our solar system is the most fit for terraforming?

Do we have any particular tonal center in mind when we are NOT listening music?

Is there a way to hide HTML source code yet keeping it effective?

Fuel sender works when outside of tank, but not when in tank

Subverting the emotional woman and stoic man trope

Proper way to shut down consumer

How do I set a custom order for folders on Windows 7 and 10?

Co-supervisor comes to the office to help her students, which distracts me



How to implement a correct If Then Else Statement in an Antlr Grammar?


Putting a simple if-then-else statement on one lineANTLR/Grammar issue: calculator languageAntlr left recursiveANTLR check if commontree is correct or How to check if given input matches the ANTLR grammar?How to implement if-else statement in XSLT?boolean and arithmetic expression grammar in ANTLRif else statement in AngularJS templatesmincaml grammar in antlr4„Erratic“ grammar parsing by JavaCC for the IfStatement?How to use *ngIf else?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm working on a statement's extention on a .g4 grammar (named Simple.g4) in ANTLR, I'm trying to implement an "if then else Statement" including a new instruction called ifStatement in section statement but I'm having issue with the code I generated.



Is this the correct form to implement the if statement?



Here is the code I'm working with using Eclipse IDE + ANTLR Plugin:



grammar Simple;


//PARSER RULES


block : '' statement* '';




statement : assignment ';'
| deletion ';'
| print ';'
| varDec ';'
| ifStatement ';'
| funDec ';'
| block;




assignment : ID '=' exp;


deletion : 'delete' ID;

print : 'print' exp;

exp : '(' exp ')' #baseExp
| '-' exp #negExp
| left=exp op=('*' | '/') right=exp #binExp
| left=exp op=('+' | '-') right=exp #binExp
| ID #varExp
| INT #valExp
| BOOL #valExp
| expression cmp='>' expression #boolExp
| expression cmp='<' expression #boolExp /
| expression cmp='==' expression #boolExp
| expression cmp='!=' expression #boolExp
| expression cmp='>=' expression #boolExp
| expression cmp='<=' expression #boolExp



// If-Then-Else

ifStatement : 'if' '(' exp ')' 'then' exp 'else' exp



// LEXER RULES


TRUE : 'true' ;
FALSE : 'false';
IF : 'if' ;
THEN : 'then' ;
ELSE : 'else' ;
VAR : 'var' ;
INT : 'int' ;
BOOL : 'bool' ;

//IDs

fragment CHAR : 'a'..'z' |'A'..'Z' ;
ID : CHAR (CHAR | DIGIT)* ;

fragment DIGIT : '0'..'9';
INT : DIGIT+;

//Boolean
BOOL : 'true' | 'false';

//Escape Sequence
WS : (' '|'t'|'n'|'r')-> skip;
LINECOMMENTS : '//' (~('n'|'r'))* -> skip;
BLOCKCOMMENTS : '/*'( ~('/'|'*')|'/'~'*'|'*'~'/'|BLOCKCOMMENTS)* '*/' -> skip;









share|improve this question
























  • Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

    – sepp2k
    Mar 28 at 17:33

















0















I'm working on a statement's extention on a .g4 grammar (named Simple.g4) in ANTLR, I'm trying to implement an "if then else Statement" including a new instruction called ifStatement in section statement but I'm having issue with the code I generated.



Is this the correct form to implement the if statement?



Here is the code I'm working with using Eclipse IDE + ANTLR Plugin:



grammar Simple;


//PARSER RULES


block : '' statement* '';




statement : assignment ';'
| deletion ';'
| print ';'
| varDec ';'
| ifStatement ';'
| funDec ';'
| block;




assignment : ID '=' exp;


deletion : 'delete' ID;

print : 'print' exp;

exp : '(' exp ')' #baseExp
| '-' exp #negExp
| left=exp op=('*' | '/') right=exp #binExp
| left=exp op=('+' | '-') right=exp #binExp
| ID #varExp
| INT #valExp
| BOOL #valExp
| expression cmp='>' expression #boolExp
| expression cmp='<' expression #boolExp /
| expression cmp='==' expression #boolExp
| expression cmp='!=' expression #boolExp
| expression cmp='>=' expression #boolExp
| expression cmp='<=' expression #boolExp



// If-Then-Else

ifStatement : 'if' '(' exp ')' 'then' exp 'else' exp



// LEXER RULES


TRUE : 'true' ;
FALSE : 'false';
IF : 'if' ;
THEN : 'then' ;
ELSE : 'else' ;
VAR : 'var' ;
INT : 'int' ;
BOOL : 'bool' ;

//IDs

fragment CHAR : 'a'..'z' |'A'..'Z' ;
ID : CHAR (CHAR | DIGIT)* ;

fragment DIGIT : '0'..'9';
INT : DIGIT+;

//Boolean
BOOL : 'true' | 'false';

//Escape Sequence
WS : (' '|'t'|'n'|'r')-> skip;
LINECOMMENTS : '//' (~('n'|'r'))* -> skip;
BLOCKCOMMENTS : '/*'( ~('/'|'*')|'/'~'*'|'*'~'/'|BLOCKCOMMENTS)* '*/' -> skip;









share|improve this question
























  • Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

    – sepp2k
    Mar 28 at 17:33













0












0








0








I'm working on a statement's extention on a .g4 grammar (named Simple.g4) in ANTLR, I'm trying to implement an "if then else Statement" including a new instruction called ifStatement in section statement but I'm having issue with the code I generated.



Is this the correct form to implement the if statement?



Here is the code I'm working with using Eclipse IDE + ANTLR Plugin:



grammar Simple;


//PARSER RULES


block : '' statement* '';




statement : assignment ';'
| deletion ';'
| print ';'
| varDec ';'
| ifStatement ';'
| funDec ';'
| block;




assignment : ID '=' exp;


deletion : 'delete' ID;

print : 'print' exp;

exp : '(' exp ')' #baseExp
| '-' exp #negExp
| left=exp op=('*' | '/') right=exp #binExp
| left=exp op=('+' | '-') right=exp #binExp
| ID #varExp
| INT #valExp
| BOOL #valExp
| expression cmp='>' expression #boolExp
| expression cmp='<' expression #boolExp /
| expression cmp='==' expression #boolExp
| expression cmp='!=' expression #boolExp
| expression cmp='>=' expression #boolExp
| expression cmp='<=' expression #boolExp



// If-Then-Else

ifStatement : 'if' '(' exp ')' 'then' exp 'else' exp



// LEXER RULES


TRUE : 'true' ;
FALSE : 'false';
IF : 'if' ;
THEN : 'then' ;
ELSE : 'else' ;
VAR : 'var' ;
INT : 'int' ;
BOOL : 'bool' ;

//IDs

fragment CHAR : 'a'..'z' |'A'..'Z' ;
ID : CHAR (CHAR | DIGIT)* ;

fragment DIGIT : '0'..'9';
INT : DIGIT+;

//Boolean
BOOL : 'true' | 'false';

//Escape Sequence
WS : (' '|'t'|'n'|'r')-> skip;
LINECOMMENTS : '//' (~('n'|'r'))* -> skip;
BLOCKCOMMENTS : '/*'( ~('/'|'*')|'/'~'*'|'*'~'/'|BLOCKCOMMENTS)* '*/' -> skip;









share|improve this question














I'm working on a statement's extention on a .g4 grammar (named Simple.g4) in ANTLR, I'm trying to implement an "if then else Statement" including a new instruction called ifStatement in section statement but I'm having issue with the code I generated.



Is this the correct form to implement the if statement?



Here is the code I'm working with using Eclipse IDE + ANTLR Plugin:



grammar Simple;


//PARSER RULES


block : '' statement* '';




statement : assignment ';'
| deletion ';'
| print ';'
| varDec ';'
| ifStatement ';'
| funDec ';'
| block;




assignment : ID '=' exp;


deletion : 'delete' ID;

print : 'print' exp;

exp : '(' exp ')' #baseExp
| '-' exp #negExp
| left=exp op=('*' | '/') right=exp #binExp
| left=exp op=('+' | '-') right=exp #binExp
| ID #varExp
| INT #valExp
| BOOL #valExp
| expression cmp='>' expression #boolExp
| expression cmp='<' expression #boolExp /
| expression cmp='==' expression #boolExp
| expression cmp='!=' expression #boolExp
| expression cmp='>=' expression #boolExp
| expression cmp='<=' expression #boolExp



// If-Then-Else

ifStatement : 'if' '(' exp ')' 'then' exp 'else' exp



// LEXER RULES


TRUE : 'true' ;
FALSE : 'false';
IF : 'if' ;
THEN : 'then' ;
ELSE : 'else' ;
VAR : 'var' ;
INT : 'int' ;
BOOL : 'bool' ;

//IDs

fragment CHAR : 'a'..'z' |'A'..'Z' ;
ID : CHAR (CHAR | DIGIT)* ;

fragment DIGIT : '0'..'9';
INT : DIGIT+;

//Boolean
BOOL : 'true' | 'false';

//Escape Sequence
WS : (' '|'t'|'n'|'r')-> skip;
LINECOMMENTS : '//' (~('n'|'r'))* -> skip;
BLOCKCOMMENTS : '/*'( ~('/'|'*')|'/'~'*'|'*'~'/'|BLOCKCOMMENTS)* '*/' -> skip;






if-statement antlr grammar






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 17:28









Nena RapsodyNena Rapsody

11 bronze badge




11 bronze badge















  • Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

    – sepp2k
    Mar 28 at 17:33

















  • Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

    – sepp2k
    Mar 28 at 17:33
















Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

– sepp2k
Mar 28 at 17:33





Can you describe what issues you're having? It does seem a bit odd to have an if statement where the branches can only be expressions (especially since your language doesn't seem to have any expressions that have side effects).

– sepp2k
Mar 28 at 17:33












0






active

oldest

votes














Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403654%2fhow-to-implement-a-correct-if-then-else-statement-in-an-antlr-grammar%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403654%2fhow-to-implement-a-correct-if-then-else-statement-in-an-antlr-grammar%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴