public virtual Value evaluate(Context cx, CatchClauseNode node)
 {
     output("<CatchClauseNode position=\"" + node.pos() + "\">");
     indent_Renamed_Field++;
     if (node.parameter != null)
     {
         node.parameter.evaluate(cx, this);
     }
     if (node.statements != null)
     {
         node.statements.evaluate(cx, this);
     }
     indent_Renamed_Field--;
     output("</CatchClauseNode>");
     return(null);
 }
Exemple #2
0
 public void declareLocal(CatchClauseNode node)
 {
     localInfos.add(node.getUserData(typeof(MemberInfo)));
 }
		public virtual Value evaluate(Context cx, CatchClauseNode node)
		{
			output("<CatchClauseNode position=\"" + node.pos() + "\">");
			indent_Renamed_Field++;
			if (node.parameter != null)
			{
				node.parameter.evaluate(cx, this);
			}
			if (node.statements != null)
			{
				node.statements.evaluate(cx, this);
			}
			indent_Renamed_Field--;
			output("</CatchClauseNode>");
			return null;
		}