protected override void _visit(JsStringExpression node)
 {
     if (node != null)
     {
         // TODO: JsStringExpression?
     }
 }
 protected virtual void _visit( JsStringExpression node )
 {
     throw new NotImplementedException( "JsStringExpression" );
 }
Esempio n. 3
0
 void _Visit(JsStringExpression node)
 {
     Write("\"" + node.Value.ToString() + "\"", JsTokenType.Value);
 }