protected override void _visit( JsExternalFileUnit node )
 {
     if (node != null)
     {
         // Do Nothing
     }
 }
 protected virtual void _visit( JsExternalFileUnit node )
 {
     throw new NotImplementedException( "JsExternalFileUnit" );
 }
Exemplo n.º 3
0
 void _Visit(JsExternalFileUnit node)
 {
     _Visit((JsUnit)node);
     Write(File.ReadAllText(node.Filename), JsTokenType.Raw);
     NewLine();
 }