Class: Nasl::Assignment

Inherits:
Node
  • Object
show all
Defined in:
lib/nasl/parser/assigment.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#ctx, #tokens

Instance Method Summary collapse

Methods inherited from Node

#context, #region, #to_xml

Constructor Details

#initialize(tree, *tokens) ⇒ Assignment

Returns a new instance of Assignment.



33
34
35
36
37
38
39
40
41
42
43
# File 'lib/nasl/parser/assigment.rb', line 33

def initialize(tree, *tokens)
  super

  @lval = @tokens[0]
  @op = @tokens[1]
  @expr = @tokens[2]

  @children << :op
  @children << :lval
  @children << :expr
end

Instance Attribute Details

#exprObject (readonly)

Returns the value of attribute expr.



31
32
33
# File 'lib/nasl/parser/assigment.rb', line 31

def expr
  @expr
end

#lvalObject (readonly)

Returns the value of attribute lval.



31
32
33
# File 'lib/nasl/parser/assigment.rb', line 31

def lval
  @lval
end

#opObject (readonly)

Returns the value of attribute op.



31
32
33
# File 'lib/nasl/parser/assigment.rb', line 31

def op
  @op
end