class AdLint::Cc1::TypedefTypeSpecifierCollector

Attributes

typedef_type_specifiers[R]

Public Class Methods

new() click to toggle source
# File lib/adlint/cc1/syntax.rb, line 5282
def initialize
  @typedef_type_specifiers = []
end

Public Instance Methods

visit_typedef_type_specifier(node) click to toggle source
# File lib/adlint/cc1/syntax.rb, line 5291
def visit_typedef_type_specifier(node)
  super
  @typedef_type_specifiers.push(node)
end
visit_variable_definition(node) click to toggle source
# File lib/adlint/cc1/syntax.rb, line 5288
def visit_variable_definition(node)
end