class TurboTest::StaticAnalysis::ActiveRecord::LineStackSexpBuilder

Constants

ARITIES
EVENTS_TO_REJECT

Attributes

stack[R]

Public Class Methods

new(path, filename = "-", lineno = 1) click to toggle source
Calls superclass method
# File lib/turbo_test_static_analysis/active_record_schema/sexp_builder/line_stack_sexp_builder.rb, line 29
def initialize(path, filename = "-", lineno = 1)
  super
  @stack = LineColumnStack.new
end

Public Instance Methods

stack_line() click to toggle source
# File lib/turbo_test_static_analysis/active_record_schema/sexp_builder/line_stack_sexp_builder.rb, line 34
def stack_line
  @stack.push lineno, column
end