Module: Gisele::Language::Syntax::ImplicitSeqSt

Includes:
Node
Defined in:
lib/gisele/language/syntax/implicit_seq_st.rb

Instance Method Summary collapse

Methods included from Node

#to_ast, #value

Instance Method Details

#_to_astObject



7
8
9
10
11
# File 'lib/gisele/language/syntax/implicit_seq_st.rb', line 7

def _to_ast
  front = captures[:explicit_statement].first.to_ast
  tail  = captures[:st_list].first.value
  [:seq_st, front] + tail
end