Class: ASTNode

Inherits:
RLTK::ASTNode
  • Object
show all
Defined in:
lib/ast.rb

Instance Method Summary collapse

Instance Method Details

#doc_strObject



32
33
34
35
36
37
38
# File 'lib/ast.rb', line 32

def doc_str
	if doc == ''
		return ''
	else
		return " # #{doc}"
	end
end