Class: Treetop::Runtime::SyntaxNode
- Inherits:
- 
      Object
      
        - Object
- Treetop::Runtime::SyntaxNode
 
- Defined in:
- lib/pgn/pgn_nodes.rb
Direct Known Subclasses
Sexp::PAllGames, Sexp::PAllMoves, Sexp::PAllMovesWithResult, Sexp::PCastle, Sexp::PComment, Sexp::PCommentWithBracket, Sexp::PFloat, Sexp::PGame, Sexp::PHeader, Sexp::PHeaderBody, Sexp::PIdentifier, Sexp::PInteger, Sexp::PMove, Sexp::PMoveNumber, Sexp::POneMove, Sexp::PResult, Sexp::PString, Sexp::PTakes, Sexp::PTime, Sexp::PTimeIdentifier, Sexp::PVariation
Instance Method Summary collapse
Instance Method Details
#create_value_hash ⇒ Object
| 74 75 76 77 78 79 80 81 82 83 84 85 | # File 'lib/pgn/pgn_nodes.rb', line 74 def create_value_hash hash = {} elements.each do |element| key = element.elements.first.text_value value = element.elements.last.text_value hash[key] = value.delete('"') end hash end |