class AdLint::GVarDcl
DESCRIPTION¶ ↑
Global variable declaration information.
Public Class Methods
new(loc, var_name, type_rep)
click to toggle source
DESCRIPTION¶ ↑
Constructs the global variable declaration information.
PARAMETER¶ ↑
# File lib/adlint/code.rb, line 107 def initialize(loc, var_name, type_rep) @loc = loc @var_name = var_name @type_rep = type_rep end