public static bool Identify(
     Node node,
     TypeScriptAST ast
     )
 {
     return(ACTIVE.Identify(
                node.IdentifierStr,
                ast
                ));
 }
Ejemplo n.º 2
0
 public static bool Identify(
     Node node,
     AbstractSyntaxTree ast
     )
 {
     return(ACTIVE.Identify(
                node.IdentifierStr,
                ast
                ));
 }