本文整理汇总了Java中org.mozilla.javascript.Token.EXPR_VOID属性的典型用法代码示例。如果您正苦于以下问题:Java Token.EXPR_VOID属性的具体用法?Java Token.EXPR_VOID怎么用?Java Token.EXPR_VOID使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.mozilla.javascript.Token
的用法示例。
在下文中一共展示了Token.EXPR_VOID属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: CompiledExprFromTree
/**
* compile the expression from a script tree
*
* @param expression
* @param context
* @param tree
* @param columnExprList
* @throws BirtException
*/
private void CompiledExprFromTree( String expression, Context context,
ScriptNode tree, List columnExprList ) throws BirtException
{
if ( tree.getFirstChild( ) == tree.getLastChild( ) )
{
if ( tree.getFirstChild( ).getType( ) == Token.FUNCTION )
{
int index = getFunctionIndex( tree.getFirstChild( ).getString( ),
tree );
compileFunctionNode( tree.getFunctionNode( index ),
tree,
columnExprList );
}
else
{
// A single expression
if ( tree.getFirstChild( ).getType( ) != Token.EXPR_RESULT
&& tree.getFirstChild( ).getType( ) != Token.EXPR_VOID
&& tree.getFirstChild( ).getType( ) != Token.BLOCK
&& tree.getFirstChild( ).getType( ) != Token.SCRIPT)
{
// This should never happen?
throw new CoreException( pluginId,
ResourceConstants.INVALID_EXPRESSION );
}
Node exprNode = tree.getFirstChild( );
processChild( exprNode, tree, columnExprList );
}
}
else
{
compileComplexExpr( tree, tree, columnExprList );
}
}
示例2: processScriptTree
/**
* process the script tree to produce a <code>CompiledExpression</code>
*
* @param expression
* @param tree
* @param context
* @return @throws
* DataException
*/
private CompiledExpression processScriptTree( String expression,
ScriptNode tree, Context context ) throws DataException
{
CompiledExpression expr;
if ( tree.getFirstChild( ) == tree.getLastChild( ) )
{
if( tree.getFirstChild( ) == null )
throw new DataException( "Expression parse error: first child is null. The expression is " + expression,
expression );
// A single expression
if ( tree.getFirstChild( ).getType( ) != Token.EXPR_RESULT
&& tree.getFirstChild( ).getType( ) != Token.EXPR_VOID
&& tree.getFirstChild( ).getType( ) != Token.BLOCK )
{
// This should never happen?
throw new DataException( ResourceConstants.INVALID_JS_EXPR,
expression );
}
Node child, parent = tree;
Node exprNode = parent.getFirstChild( );
child = exprNode.getFirstChild( );
if ( child.getNext( ) != null )
child = exprNode;
else
{
parent = exprNode;
}
assert ( child != null && parent != null );
expr = processChild( context, false, parent, child, tree );
}
else
{
// complex expressions
// Multiple expressions exist; we should produce complex expressions
// However, individual subexpressions still needs to be processed
// to identify the interesting subexpressions
expr = compileComplexExpr( context, tree, false );
}
if ( expr instanceof BytecodeExpression )
compileForBytecodeExpr( context, tree, expr );
return expr;
}
示例3: isColumnExpression
/**
* whether the expression is column reference
* @param expression
* @return
*/
public static boolean isColumnExpression( String expression, boolean mode )
{
boolean isColumn = false;
if ( expression == null || expression.trim( ).length( ) == 0 )
return isColumn;
if ( getCompiledExpCacheMap( mode ).containsKey( expression ) )
{
return ( (Boolean) getCompiledExpCacheMap( mode ).get( expression ) ).booleanValue( );
}
Context context = Context.enter( );
ScriptNode tree;
try
{
CompilerEnvirons m_compilerEnv = new CompilerEnvirons( );
m_compilerEnv.initFromContext( context );
Parser p = new Parser( m_compilerEnv, context.getErrorReporter( ) );
AstRoot root = p.parse( expression, null, 0 );
IRFactory ir = new IRFactory( m_compilerEnv );
tree = ir.transformTree( root );
}
catch ( Exception e )
{
getCompiledExpCacheMap( mode ).put( expression,
Boolean.valueOf( false ) );
return false;
}
finally
{
Context.exit( );
}
if ( tree.getFirstChild( ) == tree.getLastChild( ) )
{
// A single expression
if ( tree.getFirstChild( ).getType( ) != Token.EXPR_RESULT
&& tree.getFirstChild( ).getType( ) != Token.EXPR_VOID
&& tree.getFirstChild( ).getType( ) != Token.BLOCK )
{
isColumn = false;
}
Node exprNode = tree.getFirstChild( );
Node child = exprNode.getFirstChild( );
assert ( child != null );
if ( child.getType( ) == Token.GETELEM
|| child.getType( ) == Token.GETPROP )
isColumn = getDirectColRefExpr( child, mode );
else
isColumn = false;
}
else
{
isColumn = false;
}
getCompiledExpCacheMap( mode ).put( expression,
Boolean.valueOf( isColumn ) );
return isColumn;
}
示例4: isColumnExpression
/**
* whether the expression is column reference
*
* @param expression
* @return
*/
public static boolean isColumnExpression( String expression )
{
boolean isColumn = false;
if ( expression == null || expression.trim( ).length( ) == 0 )
return isColumn;
if ( compiledExprCache.containsKey( expression ) )
return ( (Boolean) compiledExprCache.get( expression ) ).booleanValue( );
Context context = Context.enter( );
ScriptNode tree;
try
{
CompilerEnvirons m_compilerEnv = new CompilerEnvirons( );
m_compilerEnv.initFromContext( context );
Parser p = new Parser( m_compilerEnv, context.getErrorReporter( ) );
AstRoot root = p.parse( expression, null, 0 );
IRFactory ir = new IRFactory( m_compilerEnv );
tree = ir.transformTree( root );
}
catch ( Exception e )
{
compiledExprCache.put( expression, Boolean.valueOf( false ) );
return false;
}
finally
{
Context.exit( );
}
if ( tree.getFirstChild( ) == tree.getLastChild( ) )
{
// A single expression
if ( tree.getFirstChild( ).getType( ) != Token.EXPR_RESULT
&& tree.getFirstChild( ).getType( ) != Token.EXPR_VOID
&& tree.getFirstChild( ).getType( ) != Token.BLOCK )
{
isColumn = false;
}
Node exprNode = tree.getFirstChild( );
Node child = exprNode.getFirstChild( );
assert ( child != null );
if ( child.getType( ) == Token.GETELEM
|| child.getType( ) == Token.GETPROP )
isColumn = getDirectColRefExpr( child );
else
isColumn = false;
}
else
{
isColumn = false;
}
compiledExprCache.put( expression, Boolean.valueOf( isColumn ) );
return isColumn;
}