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