Skip to content

Commit

Permalink
Fix last remaining specs for new sexp construction
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 22, 2013
1 parent 6d24613 commit fca7065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/opal/parser/grammar.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/opal/parser/grammar.y
Expand Up @@ -317,7 +317,7 @@ rule
}
| primary_value tDOT tIDENTIFIER
{
result = new_call val[0], value(val[2]).intern, []
result = new_call val[0], val[2], []
}
| primary_value tCOLON2 tIDENTIFIER
| primary_value tDOT tCONSTANT
Expand Down Expand Up @@ -937,7 +937,7 @@ rule

lambda: f_larglist lambda_body
{
result = new_call nil, :lambda, s(:arglist)
result = new_call nil, [:lambda, []], []
result << new_iter(val[0], val[1])
}

Expand Down

0 comments on commit fca7065

Please sign in to comment.