|
|
|
@ -838,7 +838,11 @@ public class FormulaPane extends BasicPane implements KeyListener, UIFormula {
|
|
|
|
|
public void hunter4Tiny(Tiny tiny) { |
|
|
|
|
String statement = tiny.getStatement(); |
|
|
|
|
if (StringUtils.isNotBlank(statement) && statement.startsWith(ScriptConstants.DETAIL_TAG)) { |
|
|
|
|
parameterList.add(new Parameter(statement.substring(1))); |
|
|
|
|
if (statement.startsWith(ScriptConstants.SUMMARY_TAG)) { |
|
|
|
|
parameterList.add(new Parameter(statement)); |
|
|
|
|
} else { |
|
|
|
|
parameterList.add(new Parameter(statement.substring(1))); |
|
|
|
|
} |
|
|
|
|
} else if (tiny.getClass() == ColumnRowRange.class || |
|
|
|
|
tiny.getClass() == SheetIntervalLiteral.class || tiny.getClass() == BlockIntervalLiteral.class) { |
|
|
|
|
parameterList.add(new Parameter(tiny.toString())); |
|
|
|
|