Skip to content

Commit

Permalink
I blame emacs
Browse files Browse the repository at this point in the history
enebo committed Jul 17, 2017
1 parent 4218b04 commit adcc1d6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/src/main/java/org/jruby/ast/types/ISymbolNameNode.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.jruby.ast.types;

import org.jruby.RubySymbol;

/**
* Symbols are live Ruby objects and not all node types can
* stand up a symbol on demand (no runtime access) so we
* differentiate between these special name nodes.
*/
public interface ISymbolNameNode extends INameNode {
public RubySymbol getSymbolName();
}

0 comments on commit adcc1d6

Please sign in to comment.