Beispiel #1
0
 public static ReaderMacroStep DefaultReaderMacroFunction(ReaderContext context, char character)
 {
     throw new NotImplementedException ();
 }
Beispiel #2
0
 protected NonFinalReaderMacroStep(ReaderContext context)
     : base(false)
 {
     this.context = context;
 }
Beispiel #3
0
 public ReaderStep3(ReaderContext context, char x)
     : base(context)
 {
     Utility.Ignore (x);
 }
Beispiel #4
0
 public ReaderStep10(ReaderContext context, string packagePrefix, string token)
     : base(context)
 {
     this.packagePrefix = packagePrefix;
         this.token = token;
 }
Beispiel #5
0
 public ReaderStep6(ReaderContext context, char x)
     : base(context)
 {
     Utility.Ignore(x);
 }
Beispiel #6
0
 public ReaderStep2(ReaderContext context, char x)
     : base(context)
 {
     Utility.Ignore (x);
     throw new NotImplementedException ();
 }
Beispiel #7
0
 public ReaderStep7(ReaderContext context, char x)
     : base(context)
 {
     this.x = x;
 }
Beispiel #8
0
 ReadLeftParen(ReaderContext context, char lParen)
     : base(context)
 {
     Utility.Ignore (lParen);
 }
Beispiel #9
0
 protected NonFinalReaderStep(ReaderContext context)
     : base(false)
 {
     this.context = context;
 }
Beispiel #10
0
 // used by other steps to return to this state
 public InitialReaderStep(ReaderContext context)
     : base(context)
 {
 }
Beispiel #11
0
 public ReaderStep10(ReaderContext context, string packagePrefix, string token)
     : base(context)
 {
     this.packagePrefix = packagePrefix;
     this.token         = token;
 }
Beispiel #12
0
 public ReaderStep8(ReaderContext context, StringBuilder tokenBuffer, string packagePrefix)
     : base(context)
 {
     this.tokenBuffer   = tokenBuffer;
     this.packagePrefix = packagePrefix;
 }
Beispiel #13
0
 public ReaderStep7(ReaderContext context, char x)
     : base(context)
 {
     this.x = x;
 }
Beispiel #14
0
 public ReadDoubleQuote(ReaderContext context, char doubleQuote)
     : base(context)
 {
     Utility.Ignore (doubleQuote);
 }
Beispiel #15
0
 public ReaderStep8(ReaderContext context, StringBuilder tokenBuffer, string packagePrefix)
     : base(context)
 {
     this.tokenBuffer = tokenBuffer;
     this.packagePrefix = packagePrefix;
 }
Beispiel #16
0
 public static ReaderMacroStep ReaderMacroFunction(ReaderContext context, char doubleQuote)
 {
     return new ReadDoubleQuote (context, doubleQuote);
 }
Beispiel #17
0
 // used by other steps to return to this state
 public InitialReaderStep(ReaderContext context)
     : base(context)
 {
 }
Beispiel #18
0
 public static ReaderMacroStep ReaderMacroFunction(ReaderContext context, char lParen)
 {
     return new ReadLeftParen (context, lParen);
 }
Beispiel #19
0
 public ReaderStep2(ReaderContext context, char x)
     : base(context)
 {
     Utility.Ignore(x);
     throw new NotImplementedException();
 }