Ejemplo n.º 1
0
 public Home(ICodeTranspiler ___transpiler, IGraphTranspiler ___graphTranspiler)
 {
     _transpiler      = ___transpiler;
     _graphTranspiler = ___graphTranspiler;
 }
Ejemplo n.º 2
0
 public static string compile(string code, __Scope __scope)
 {
     ICodeTranspiler _transpiler = __scope.get<ICodeTranspiler>("_transpiler");
     return _transpiler.Transpile(code);
 }
Ejemplo n.º 3
0
        static public string Transpile(string text, __Scope __scope)
        {
            ICodeTranspiler _transpiler = __scope.get <ICodeTranspiler>("_transpiler");

            return(_transpiler.Transpile(text));
        }