|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4compiler.ast.Browsable
edu.mit.csail.sdg.alloy4compiler.ast.Command
public final class Command
Immutable; reresents a "run" or "check" command.
Invariant: expects == -1, 0, or 1
Invariant: overall >= -1
Invariant: bitwidth >= -1
Invariant: maxseq >= -1
Invariant: maxstring >= -1
Field Summary | |
---|---|
ConstList<Sig> |
additionalExactScopes
This stores a list of Sig whose scope shall be considered "exact", but we may or may not know what its scope is yet. |
int |
bitwidth
The integer bitwidth (0 or higher) (Or -1 if it was not specified). |
boolean |
check
true if this is a "check"; false if this is a "run". |
int |
expects
The expected answer (either 0 or 1) (Or -1 if there is no expected answer). |
Expr |
formula
The formula associated with this command. |
java.lang.String |
label
The label for the command; it is just for pretty-printing and does not have to be unique. |
int |
maxseq
The maximum sequence length (0 or higher) (Or -1 if it was not specified). |
int |
maxstring
The number of String atoms to allocate (0 or higher) (Or -1 if it was not specified). |
int |
overall
The overall scope (0 or higher) (Or -1 if there is no overall scope). |
Command |
parent
If nonnull, it means this command depends on this parent command. |
Pos |
pos
The position in the original file where this command was declared; never null. |
ConstList<CommandScope> |
scope
The list of scopes. |
Constructor Summary | |
---|---|
Command(boolean check,
int overall,
int bitwidth,
int maxseq,
Expr formula)
Constructs a new Command object. |
|
Command(Pos pos,
java.lang.String label,
boolean check,
int overall,
int bitwidth,
int maxseq,
int expects,
java.lang.Iterable<CommandScope> scope,
java.lang.Iterable<Sig> additionalExactSig,
Expr formula,
Command parent)
Constructs a new Command object. |
Method Summary | |
---|---|
Command |
change(ConstList<CommandScope> scope)
Constructs a new Command object where it is the same as the current object, except with a different scope. |
Command |
change(Expr newFormula)
Constructs a new Command object where it is the same as the current object, except with a different formula. |
Command |
change(Sig... additionalExactScopes)
Constructs a new Command object where it is the same as the current object, except with a different list of "additional exact sigs". |
Command |
change(Sig sig,
boolean isExact,
int newScope)
Constructs a new Command object where it is the same as the current object, except with a different scope for the given sig. |
Command |
change(Sig sig,
boolean isExact,
int startingScope,
int endingScope,
int increment)
Constructs a new Command object where it is the same as the current object, except with a different scope for the given sig. |
java.util.Set<java.lang.String> |
getAllStringConstants(java.lang.Iterable<Sig> sigs)
Return a modifiable copy of the set of all String constants used in this command or in any facts embedded in this command. |
ConstList<Sig> |
getGrowableSigs()
Helper method that returns true iff this command contains at least one growable sig. |
java.lang.String |
getHTML()
Returns the description (as HTML) to show for this node. |
CommandScope |
getScope(Sig sig)
Helper method that returns the scope corresponding to a given sig (or return null if the sig isn't named in this command) |
java.util.List<? extends Browsable> |
getSubnodes()
Returns a list of subnodes for this node. |
Pos |
pos()
Returns a Pos object representing the position of this Expr. |
Pos |
span()
Returns a Pos object representing the entire span of this Expr and all its subexpressions. |
java.lang.String |
toString()
Returns a human-readable string that summarizes this Run or Check command. |
Methods inherited from class edu.mit.csail.sdg.alloy4compiler.ast.Browsable |
---|
make, make, make, make, showAsTree |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final Command parent
public final Pos pos
public final java.lang.String label
public final boolean check
public final int overall
public final int bitwidth
public final int maxseq
public final int maxstring
public final int expects
public final Expr formula
public final ConstList<CommandScope> scope
public final ConstList<Sig> additionalExactScopes
Constructor Detail |
---|
public Command(boolean check, int overall, int bitwidth, int maxseq, Expr formula) throws ErrorSyntax
check
- - true if this is a "check"; false if this is a "run"overall
- - the overall scope (0 or higher) (-1 if no overall scope was specified)bitwidth
- - the integer bitwidth (0 or higher) (-1 if it was not specified)maxseq
- - the maximum sequence length (0 or higher) (-1 if it was not specified)formula
- - the formula that must be satisfied by this command
ErrorSyntax
public Command(Pos pos, java.lang.String label, boolean check, int overall, int bitwidth, int maxseq, int expects, java.lang.Iterable<CommandScope> scope, java.lang.Iterable<Sig> additionalExactSig, Expr formula, Command parent)
pos
- - the original position in the file (must not be null)label
- - the label for this command (it is only for pretty-printing and does not have to be unique)check
- - true if this is a "check"; false if this is a "run"overall
- - the overall scope (0 or higher) (-1 if no overall scope was specified)bitwidth
- - the integer bitwidth (0 or higher) (-1 if it was not specified)maxseq
- - the maximum sequence length (0 or higher) (-1 if it was not specified)expects
- - the expected value (0 or 1) (-1 if no expectation was specified)scope
- - a list of scopes (can be null if we want to use default)additionalExactSig
- - a list of sigs whose scope shall be considered exact though we may or may not know what the scope is yetformula
- - the formula that must be satisfied by this commandMethod Detail |
---|
public final java.lang.String toString()
toString
in class java.lang.Object
public Command change(Expr newFormula)
public Command change(ConstList<CommandScope> scope)
public Command change(Sig... additionalExactScopes)
public Command change(Sig sig, boolean isExact, int newScope) throws ErrorSyntax
ErrorSyntax
public Command change(Sig sig, boolean isExact, int startingScope, int endingScope, int increment) throws ErrorSyntax
ErrorSyntax
public CommandScope getScope(Sig sig)
public ConstList<Sig> getGrowableSigs()
public java.util.Set<java.lang.String> getAllStringConstants(java.lang.Iterable<Sig> sigs) throws Err
Err
public final Pos pos()
pos
in class Browsable
public final Pos span()
span
in class Browsable
public java.lang.String getHTML()
getHTML
in class Browsable
public java.util.List<? extends Browsable> getSubnodes()
getSubnodes
in class Browsable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |