public static ReaderMacroStep DefaultReaderMacroFunction(ReaderContext context, char character) { throw new NotImplementedException (); }
protected NonFinalReaderMacroStep(ReaderContext context) : base(false) { this.context = context; }
public ReaderStep3(ReaderContext context, char x) : base(context) { Utility.Ignore (x); }
public ReaderStep10(ReaderContext context, string packagePrefix, string token) : base(context) { this.packagePrefix = packagePrefix; this.token = token; }
public ReaderStep6(ReaderContext context, char x) : base(context) { Utility.Ignore(x); }
public ReaderStep2(ReaderContext context, char x) : base(context) { Utility.Ignore (x); throw new NotImplementedException (); }
public ReaderStep7(ReaderContext context, char x) : base(context) { this.x = x; }
ReadLeftParen(ReaderContext context, char lParen) : base(context) { Utility.Ignore (lParen); }
protected NonFinalReaderStep(ReaderContext context) : base(false) { this.context = context; }
// used by other steps to return to this state public InitialReaderStep(ReaderContext context) : base(context) { }
public ReaderStep8(ReaderContext context, StringBuilder tokenBuffer, string packagePrefix) : base(context) { this.tokenBuffer = tokenBuffer; this.packagePrefix = packagePrefix; }
public ReadDoubleQuote(ReaderContext context, char doubleQuote) : base(context) { Utility.Ignore (doubleQuote); }
public static ReaderMacroStep ReaderMacroFunction(ReaderContext context, char doubleQuote) { return new ReadDoubleQuote (context, doubleQuote); }
public static ReaderMacroStep ReaderMacroFunction(ReaderContext context, char lParen) { return new ReadLeftParen (context, lParen); }
public ReaderStep2(ReaderContext context, char x) : base(context) { Utility.Ignore(x); throw new NotImplementedException(); }