public class FlowExpressionParseUtil
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
FlowExpressionParseUtil.FlowExpressionContext
Context used to parse a flow expression.
|
static class |
FlowExpressionParseUtil.FlowExpressionParseException
An exception that indicates a parse error.
|
Modifier and Type | Field and Description |
---|---|
protected static java.lang.String |
PARAMETER_REGEX
Regular expression for a formal parameter use.
|
protected static java.util.regex.Pattern |
UNANCHORED_PARAMETER_PATTERN
Unanchored; can be used to find all formal parameter uses.
|
Constructor and Description |
---|
FlowExpressionParseUtil() |
Modifier and Type | Method and Description |
---|---|
static FlowExpressions.Receiver |
internalReprOfVariable(AnnotatedTypeFactory provider,
com.sun.source.tree.VariableTree tree) |
static java.util.List<java.lang.Integer> |
parameterIndices(java.lang.String s) |
static FlowExpressions.Receiver |
parse(java.lang.String expression,
FlowExpressionParseUtil.FlowExpressionContext context,
com.sun.source.util.TreePath localScope,
boolean useLocalScope)
Parse a string and return its representation as a
FlowExpressions.Receiver , or throw an FlowExpressionParseUtil.FlowExpressionParseException . |
protected static final java.lang.String PARAMETER_REGEX
protected static final java.util.regex.Pattern UNANCHORED_PARAMETER_PATTERN
public static FlowExpressions.Receiver parse(java.lang.String expression, FlowExpressionParseUtil.FlowExpressionContext context, com.sun.source.util.TreePath localScope, boolean useLocalScope) throws FlowExpressionParseUtil.FlowExpressionParseException
FlowExpressions.Receiver
, or throw an FlowExpressionParseUtil.FlowExpressionParseException
.expression
- flow expression to parsecontext
- information about any receiver and argumentslocalScope
- path to local scope to useuseLocalScope
- whether localScope
should be used to resolve identifiersFlowExpressionParseUtil.FlowExpressionParseException
public static java.util.List<java.lang.Integer> parameterIndices(java.lang.String s)
s
. Each
formal parameter occurs in s as a string like "#1" or "#4". This routine does not do
proper parsing; for instance, if "#2" appears within a string in s, then 2 would still be
in the result list.public static FlowExpressions.Receiver internalReprOfVariable(AnnotatedTypeFactory provider, com.sun.source.tree.VariableTree tree) throws FlowExpressionParseUtil.FlowExpressionParseException