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