Exemplo n.º 1
0
 /* function node */
 public void outAFunction(AFunction node) {
   setValue(
       node,
       getValue(node.getType())
           + node.getIdentifier().toString()
           + node.getLPar().toString()
           + getValue(node.getArguments())
           + node.getRPar().toString()
           + getValue(node.getCompoundstm()));
 }