Example #1
0
 public SaveFilePropertiesTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor parentVisitor,
                                     ISet <string> forbiddenProperties, MultiValueDictionary <string, string> invalidPropertyValues)
 {
     this.builder               = builder;
     this.parentVisitor         = parentVisitor;
     this.forbiddenProperties   = forbiddenProperties;
     this.invalidPropertyValues = invalidPropertyValues;
 }
 public MacroRemoverTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor transpiler)
 {
     this.builder    = builder;
     this.transpiler = transpiler;
 }
 public ItemSaveFilePropertiesTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor parentVisitor, MultiValueDictionary <string, string> invalidPropertyValues)
     : base(builder, parentVisitor, forbiddenProperties, invalidPropertyValues)
 {
 }
Example #4
0
 public ChainedMemberTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor sphere56TranspilerVisitor)
 {
     this.builder          = builder;
     this.parentTranspiler = sphere56TranspilerVisitor;
 }
Example #5
0
 public LiteralArgumentTranspiler(Sphere56TranspilerVisitor parentTranspiler, SourceCodeBuilder builder, bool stripDoubleQuotes = false)
 {
     this.parentTranspiler  = parentTranspiler;
     this.builder           = builder;
     this.stripDoubleQuotes = stripDoubleQuotes;
 }
 public DialogPositionTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor parentTranspiler)
 {
     this.builder          = builder;
     this.parentTranspiler = parentTranspiler;
 }
 public SpecialFunctionTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor transpiler)
 {
     this.builder    = builder;
     this.transpiler = transpiler;
 }
 public SafeTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor transpiler)
 {
     this.builder    = builder;
     this.transpiler = transpiler;
 }
 public VariableNameTranspiler(SourceCodeBuilder builder, Sphere56TranspilerVisitor parentTranspiler)
 {
     this.builder          = builder;
     this.parentTranspiler = parentTranspiler;
 }
Example #10
0
 public DialogFunctionArgumentsTranspiler(Sphere56TranspilerVisitor parentTranspiler, SourceCodeBuilder builder)
 {
     this.builder          = builder;
     this.parentTranspiler = parentTranspiler;
 }