|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.dante.extex.interpreter.type.AbstractCode
de.dante.extex.interpreter.type.AbstractAssignment
de.dante.extex.interpreter.primitives.macro.Let
This class provides an implementation for the primitive
The primitive \let defined a control sequence or active character.
The value is taken from the meaning of another token. If the token is a
control sequence or active character then the meaning is used. If the other
definition is changed the newly defined binding remains intact.
\let
.
The Primitive \let
Syntax
The formal description of this primitive is the following:
〈let〉
→ \let 〈control sequence〉 〈equals〉 〈token〉
Examples
\let\a=\b
Field Summary | |
protected static long |
serialVersionUID
The constant serialVersionUID contains the id for serialization. |
static TokenVisitor |
VISITOR
The field VISITOR contains the anonymous inner class of the token visitor for the let command. |
Constructor Summary | |
Let(java.lang.String name)
Creates a new object. |
Method Summary | |
void |
assign(Flags prefix,
Context context,
TokenSource source,
Typesetter typesetter)
The method assign is the core of the functionality of execute() . |
static void |
let(Flags prefix,
Context context,
CodeToken cs,
Token t)
Assign a new meaning to a control sequence. |
Methods inherited from class de.dante.extex.interpreter.type.AbstractAssignment |
execute |
Methods inherited from class de.dante.extex.interpreter.type.AbstractCode |
enableLocalization, getLocalizer, getName, isIf, isOuter, printable, printableControlSequence, readResolve, setName, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
protected static final long serialVersionUID
public static final TokenVisitor VISITOR
Constructor Detail |
public Let(java.lang.String name)
name
- the name for debuggingMethod Detail |
public void assign(Flags prefix, Context context, TokenSource source, Typesetter typesetter) throws InterpreterException
AbstractAssignment
execute()
.
This method is preferable to execute() since the
execute() method provided in this class takes care of
\afterassignment and \globaldefs as well.
assign
in class AbstractAssignment
prefix
- the prefix controlling the executioncontext
- the interpreter contextsource
- the token sourcetypesetter
- the typesetter
InterpreterException
- in case of an errorCode.execute(
de.dante.extex.interpreter.Flags,
de.dante.extex.interpreter.context.Context,
de.dante.extex.interpreter.TokenSource,
de.dante.extex.typesetter.Typesetter)
public static void let(Flags prefix, Context context, CodeToken cs, Token t) throws InterpreterException
\let
.
prefix
- the flags to considercontext
- the processor contextcs
- the control sequence token to bindt
- the new meaning of the control sequence token. If this
parameter is null
then an exception is thrown.
InterpreterException
- in case of an error
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |