823824825826827828829830
protected void processNumericLiteral(AST literal) { literalProcessor.processNumeric( literal ); } protected void processIndex(AST indexOp) throws SemanticException { IndexNode indexNode = ( IndexNode ) indexOp; indexNode.resolve( true, true ); }
954955956957958959960961
846847848849850851852853
889890891892893894895896
950951952953954955956957
968969970971972973974975
949950951952953954955956
966967968969970971972973
980981982983984985986987
12121213121412151216121712181219122012211222122312241225
assertNull( n.getFromElement() ); assertFalse( n.isReturnableEntity() ); } public void testIndexNode() throws Exception { IndexNode n = new IndexNode(); Exception ex = null; try { n.setScalarColumn( 0 ); } catch ( UnsupportedOperationException e ) { ex = e; } assertNotNull( ex );