class Nasl::DoWhile

Attributes

body[R]
cond[R]

Public Class Methods

new(tree, *tokens) click to toggle source
Calls superclass method
# File lib/nasl/parser/do_while.rb, line 33
def initialize(tree, *tokens)
  super

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

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