class Rucc::Lexer::Preprocessor::CondIncl

Attributes

ctx[RW]
file[RW]
include_guard[RW]
wastrue[RW]

Public Class Methods

new(ctx, wastrue:) click to toggle source

@param [CondInclCtx] @param [String, NilClass] include_guard @param [FileIO, NilClass] file @param [Boolean] wastrue

# File lib/rucc/lexer/preprocessor/cond_incl.rb, line 15
def initialize(ctx, wastrue:)
  @ctx = ctx
  @wastrue = wastrue

  @include_guard = nil
  @file = nil
end