class TyranoDsl::ParsingContext

Context for parsing, used by words to store content

Attributes

words[R]

@return [Array<TyranoDsl::ParsedWord>]

world[R]

@return [TyranoDsl::Elements::World]

Public Class Methods

new() click to toggle source
# File lib/tyrano_dsl/parsing_context.rb, line 13
def initialize
  @words = []
  @world = TyranoDsl::Elements::World.new
end