コード例 #1
0
 public MetaCompiler()
 {
     this.Namespace         = "sys.compiler";
     this.SupportsFunctions = true;
     this.NamingConvention  = "pascal";
     this.ExportedFunctions = new List <string>()
     {
         "toConstantDate",
         "toConstantTime",
         "toConstantDay",
         "toListCheck",
         "toRelativeDate",
         "toDaysAway",
         "toTable"
     };
     _data = new MetaCompilerData();
     _data.Init();
 }
コード例 #2
0
ファイル: MetaCompiler.cs プロジェクト: GHLabs/SambaPOS-3
	    public MetaCompiler()
	    {
		    this.Namespace = "sys.compiler";
		    this.SupportsFunctions = true;
	        this.NamingConvention = "pascal";
		    this.ExportedFunctions = new List<string>()
		    {
			    "toConstantDate",
			    "toConstantTime",
			    "toConstantDay",
                "toListCheck",
                "toRelativeDate",
                "toDaysAway",
                "toTable"
		    };
            _data = new MetaCompilerData();
            _data.Init();
	    }