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
72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/pgn/pgn_nodes.rb', line 72 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 |