class AdLint::Cc1::GotoStatement

Attributes

identifier[R]

Public Class Methods

new(id) click to toggle source
Calls superclass method AdLint::Cc1::Statement::new
# File lib/adlint/cc1/syntax.rb, line 3941
def initialize(id)
  super()
  @identifier = id
end

Public Instance Methods

inspect(indent = 0) click to toggle source
# File lib/adlint/cc1/syntax.rb, line 3948
def inspect(indent = 0)
  " " * indent + "#{short_class_name} (#{@identifier.inspect})"
end