Class: Nasl::While

Inherits:
Node
  • Object
show all
Defined in:
lib/nasl/parser/while.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) ⇒ While

Returns a new instance of While.



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

def initialize(tree, *tokens)
  super

  @cond = @tokens[2]
  @body = @tokens[4]

  @children << :cond
  @children << :body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



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

def body
  @body
end

#condObject (readonly)

Returns the value of attribute cond.



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

def cond
  @cond
end