Skip to content

Commit

Permalink
Merge branch 'ast' of https://github.com/bfbechlin/simple_compiler in…
Browse files Browse the repository at this point in the history
…to make_source
  • Loading branch information
bfbechlin committed May 17, 2017
2 parents 1ca6d03 + d9620ec commit 0a0ff7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
%type <tree> prog decl_list decl func type var lit ident vec vec_init fheader params_list params params_rest fbody block cmd_list cmd attr expr read print_arg print_list print return args args_rest args_list ctrl

%start prog
%left OP_EQ OP_LE OP_GE OP_NE '>' '<'
%left OP_AND OP_OR '!'
%left OP_EQ OP_LE OP_GE OP_NE '>' '<'
%left '+' '-'
%left '*' '/'

Expand Down

0 comments on commit 0a0ff7e

Please sign in to comment.