Skip to content

Commit

Permalink
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/lexer/LexingCommon.java
Original file line number Diff line number Diff line change
@@ -79,7 +79,6 @@ public LexingCommon(LexerSource src) {
public ISourcePosition tokline;
public int tokp = 0; // Where last token started
protected Object yaccValue; // Value of last token which had a value associated with it.
protected ByteList identifier = null; // until we get rid of String + ByteList duality we have this as extra field.

public final ByteList BACKTICK = new ByteList(new byte[] {'`'}, USASCII_ENCODING);
public final ByteList EQ_EQ_EQ = new ByteList(new byte[] {'=', '=', '='}, USASCII_ENCODING);
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/lexer/yacc/RubyLexer.java
Original file line number Diff line number Diff line change
@@ -1384,7 +1384,6 @@ private int dollar() throws IOException {
case '0':
setState(EXPR_END);

identifier = new ByteList(new byte[] {'$', (byte) c}, USASCII_ENCODING);
return identifierToken(RubyParser.tGVAR, new ByteList(new byte[] {'$', (byte) c}));
default:
if (!isIdentifierChar(c)) {

0 comments on commit fe35f48

Please sign in to comment.