コード例 #1
0
ファイル: ZestParser.cs プロジェクト: TuxMulder/zest
 public ZestParser(Grammar grammar, ImmediateRepresentation immediateRepresentation)
 {
     this.grammar = grammar;
     this.immediateRepresentation = immediateRepresentation;
 }
コード例 #2
0
ファイル: ZestErrorHandling.cs プロジェクト: TuxMulder/zest
 public ZestErrorHandling(ImmediateRepresentation sourceCode)
 {
     this.sourceCode = sourceCode;
 }
コード例 #3
0
ファイル: ZestSyntaxHandling.cs プロジェクト: TuxMulder/zest
 public ZestSyntaxHandling(ImmediateRepresentation immediateRepresentation)
 {
     this.immediateRepresentation = immediateRepresentation;
 }
コード例 #4
0
 protected static void CreateSut(ImmediateRepresentation sourceCode)
 {
     Sut = new C.ZestParser(new G.ZestGrammar(), sourceCode);
 }
コード例 #5
0
ファイル: CsharpTestGenerator.cs プロジェクト: TuxMulder/zest
 public CsharpTestGenerator(ImmediateRepresentation immedieateRepresentation)
 {
     this.immedieateRepresentation = immedieateRepresentation;
 }
コード例 #6
0
ファイル: CommandFactory.cs プロジェクト: TuxMulder/zest
 public CommandFactory(ImmediateRepresentation immediateRep, Grammar zestGrammar)
 {
     this.immediateRep = immediateRep;
     this.zestGrammar = zestGrammar;
 }