コード例 #1
0
ファイル: Project.xs.cs プロジェクト: SailerDom/Excess
 public static string compile(string code, __Scope __scope)
 {
     ICodeTranspiler _transpiler = __scope.get<ICodeTranspiler>("_transpiler");
     return _transpiler.Transpile(code);
 }
コード例 #2
0
ファイル: Home.xs.cs プロジェクト: tylike/Excess
        static public string Transpile(string text, __Scope __scope)
        {
            ICodeTranspiler _transpiler = __scope.get <ICodeTranspiler>("_transpiler");

            return(_transpiler.Transpile(text));
        }