fmrisc.Syntax
Class SelectorIdentifier

java.lang.Object
  extended by fmrisc.Syntax.ASTBase
      extended by fmrisc.Syntax.SelectorBase
          extended by fmrisc.Syntax.SelectorIdentifier
All Implemented Interfaces:
AST, Selector

public final class SelectorIdentifier
extends SelectorBase

Identifier as selector.


Constructor Summary
SelectorIdentifier(Reference base)
          make selector from identifier base
 
Method Summary
 AST accept(ASTVisitor visitor)
          Accept visitor for a visit.
 Reference getIdentifier()
          return identifier
 Selector instantiate()
          return copy of AST with value references instantiated by the substitutions set in the corresponding declaration identifiers
 void printCore(java.io.PrintWriter out)
          Prints text representation on out (without new line termination).
 
Methods inherited from class fmrisc.Syntax.SelectorBase
print
 
Methods inherited from class fmrisc.Syntax.ASTBase
printParens, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface fmrisc.Syntax.AST
printParens, toString
 

Constructor Detail

SelectorIdentifier

public SelectorIdentifier(Reference base)
make selector from identifier base

Parameters:
base - the selector base
Method Detail

getIdentifier

public Reference getIdentifier()
return identifier

Returns:
the identifier

instantiate

public Selector instantiate()
return copy of AST with value references instantiated by the substitutions set in the corresponding declaration identifiers

Returns:
the instantiated copy

printCore

public void printCore(java.io.PrintWriter out)
Prints text representation on out (without new line termination).

Specified by:
printCore in interface AST
Specified by:
printCore in class ASTBase
Parameters:
out - the stream on which the text is written

accept

public AST accept(ASTVisitor visitor)
Accept visitor for a visit.

Parameters:
visitor - the visitor who is accepted by this node.
Returns:
the result of the visit (may be null)