Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/parser/RubyParser.java
Original file line number Diff line number Diff line change
@@ -5303,7 +5303,7 @@ public Object yyparse (RubyLexer yyLex) throws java.io.IOException {
};
states[631] = new ParserState() {
@Override public Object execute(ParserSupport support, RubyLexer lexer, Object yyVal, Object[] yyVals, int yyTop) {
yyVal = tCOLON2;
yyVal = "::";
return yyVal;
}
};
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/parser/RubyParser.y
Original file line number Diff line number Diff line change
@@ -2519,7 +2519,7 @@ call_op : tDOT {

call_op2 : call_op
| tCOLON2 {
$$ = tCOLON2;
$$ = "::";
}

opt_terms : /* none */ | terms

0 comments on commit 33225b1

Please sign in to comment.