Skip to content

Commit

Permalink
Showing 6 changed files with 8,935 additions and 8,963 deletions.
835 changes: 414 additions & 421 deletions core/src/main/java/org/jruby/ext/ripper/RipperParser.java

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions core/src/main/java/org/jruby/ext/ripper/RipperParser.y
Original file line number Diff line number Diff line change
@@ -1791,15 +1791,12 @@ var_lhs : /*mri:user_variable*/ tIDENTIFIER {
backref : tNTH_REF
| tBACK_REF

superclass : term {
$$ = null;
}
| tLT {
superclass : tLT {
p.setState(LexState.EXPR_BEG);
} expr_value term {
$$ = $3;
}
| error term {
| /* none */ {
$$ = null;
}

7,788 changes: 3,882 additions & 3,906 deletions core/src/main/java/org/jruby/ext/ripper/YyTables.java

Large diffs are not rendered by default.

827 changes: 410 additions & 417 deletions core/src/main/java/org/jruby/parser/RubyParser.java

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions core/src/main/java/org/jruby/parser/RubyParser.y
Original file line number Diff line number Diff line change
@@ -2191,16 +2191,13 @@ backref : tNTH_REF {
$$ = $1;
}

superclass : term {
$$ = null;
}
| tLT {
superclass : tLT {
lexer.setState(LexState.EXPR_BEG);
lexer.commandStart = true;
} expr_value term {
$$ = $3;
}
| error term {
| /* none */ {
$$ = null;
}

8,434 changes: 4,225 additions & 4,209 deletions core/src/main/java/org/jruby/parser/YyTables.java

Large diffs are not rendered by default.

0 comments on commit 0f21ba1

Please sign in to comment.