Skip to content

Commit

Permalink
added Indentifier AST
Browse files Browse the repository at this point in the history
  • Loading branch information
metacritical committed Jan 22, 2013
1 parent 84a0f3b commit 87f61b3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/ast/identifier.rb
@@ -0,0 +1,14 @@
module Io::AST
class Identifier < IOCore
attr_accessor :iden_name , :iden_value , :left , :right

def initialize(options={})
options.each do |key,value|
send "#{key}=",value
end
end

def traverse
end
end
end

0 comments on commit 87f61b3

Please sign in to comment.