class TyranoDsl::ParsedWord
A parsed word
Attributes
parameters[R]
@return [Hash]
word[R]
@return [String]
word_location[R]
@return [Array<String>]
Public Class Methods
new(word, word_location, parameters)
click to toggle source
@param [String] word @param [Array<String>] word_location
@param [Hash] parameters
# File lib/tyrano_dsl/parsed_word.rb, line 16 def initialize(word, word_location, parameters) @word = word @word_location = word_location @parameters = parameters end