Class: Idl::BuiltinTypeNameSyntaxNode Private
- Inherits:
-
Treetop::Runtime::SyntaxNode
- Object
- Treetop::Runtime::SyntaxNode
- Idl::BuiltinTypeNameSyntaxNode
- Defined in:
- lib/idl/ast.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #to_ast ⇒ Object private
Instance Method Details
#to_ast ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
4168 4169 4170 4171 4172 4173 4174 |
# File 'lib/idl/ast.rb', line 4168 def to_ast if !respond_to?(:i) BuiltinTypeNameAst.new(input, interval, elements[0].text_value, nil) else BuiltinTypeNameAst.new(input, interval, elements[0].text_value, i.to_ast) end end |