Exemplo n.º 1
0
 public Scenario(Object test)
 {
     this.test = test;
     semanticModelState = new SemanticModel.AAAMemento();
     semanticModel = new SemanticModel.AAA(semanticModelState);
     semantics = new Semantics(test, semanticModel);
 }
Exemplo n.º 2
0
 public Semantics(Object test, SemanticModel.AAA semanticModel)
 {
     this.test = test;
     this.semanticModel = semanticModel;
     metadataParser = new TestMetadataParser(test);
 }
Exemplo n.º 3
0
 public AAASpecialCase(SemanticModel.AAA semanticModel)
 {
     this.semanticModel = semanticModel;
 }
Exemplo n.º 4
0
 public AAA()
 {
     semanticModelMemento = new SemanticModel.AAAMemento();
     semanticModel = new SemanticModel.AAA(semanticModelMemento);
     semantics = new Semantics(semanticModel);
 }
Exemplo n.º 5
0
 public ScenarioSpecialCase(SemanticModel.AAA semanticModel, SemanticModel.AAAMemento state)
 {
     this.semanticModel = semanticModel;
     State = state;
     specDocumentGenerator = new TextSpecGenerator();
 }
Exemplo n.º 6
0
 public Semantics(SemanticModel.AAA semanticModel)
 {
     this.semanticModel = semanticModel;
 }