parameter to avoid supression of unused tags
This commit is contained in:
parent
dd07a1bf57
commit
8c530c87cd
5 changed files with 22 additions and 0 deletions
|
|
@ -777,6 +777,14 @@ public abstract class BExpressionContext implements IByteArrayUnifier
|
|||
return idx < lookupIdxUsed.length ? lookupIdxUsed[idx] : false;
|
||||
}
|
||||
|
||||
public final void setAllTagsUsed()
|
||||
{
|
||||
for( int i=0; i<lookupIdxUsed.length; i++ )
|
||||
{
|
||||
lookupIdxUsed[i] = true;
|
||||
}
|
||||
}
|
||||
|
||||
int getLookupValueIdx( int nameIdx, String value )
|
||||
{
|
||||
BExpressionLookupValue[] values = lookupValues.get( nameIdx );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue