use of com.google.template.soy.exprtree.BooleanNode in project closure-templates by google.
the class InsertMsgsVisitor method replaceIsPrimaryMsgInUseFunction.
private void replaceIsPrimaryMsgInUseFunction(FunctionNode node) {
boolean isPrimaryMsgInUse;
if (msgBundle == null) {
isPrimaryMsgInUse = true;
} else {
// if the primary message id is available or the fallback message is not available, then we
// are using the primary message.
long primaryMsgId = ((IntegerNode) node.getChild(1)).getValue();
long fallbackMsgId = ((IntegerNode) node.getChild(2)).getValue();
isPrimaryMsgInUse = !msgBundle.getMsgParts(primaryMsgId).isEmpty() || msgBundle.getMsgParts(fallbackMsgId).isEmpty();
}
node.getParent().replaceChild(node, new BooleanNode(isPrimaryMsgInUse, node.getSourceLocation()));
}
use of com.google.template.soy.exprtree.BooleanNode in project closure-templates by google.
the class InternalValueUtilsTest method testConvertPrimitiveExprToData.
@Test
public void testConvertPrimitiveExprToData() {
assertTrue(InternalValueUtils.convertPrimitiveExprToData(new NullNode(SourceLocation.UNKNOWN)) instanceof NullData);
assertTrue(InternalValueUtils.convertPrimitiveExprToData(new BooleanNode(true, SourceLocation.UNKNOWN)).booleanValue());
assertEquals(-1, InternalValueUtils.convertPrimitiveExprToData(new IntegerNode(-1, SourceLocation.UNKNOWN)).integerValue());
assertEquals(6.02e23, InternalValueUtils.convertPrimitiveExprToData(new FloatNode(6.02e23, SourceLocation.UNKNOWN)).floatValue(), 0.0);
assertEquals("foo", InternalValueUtils.convertPrimitiveExprToData(new StringNode("foo", QuoteStyle.SINGLE, SourceLocation.UNKNOWN)).stringValue());
}
use of com.google.template.soy.exprtree.BooleanNode in project closure-templates by google.
the class ParseExpressionTest method testParsePrimitives.
@Test
public void testParsePrimitives() throws Exception {
ExprNode expr = assertThatExpression("null").isValidExpression();
assertThat(expr).isInstanceOf(NullNode.class);
expr = assertThatExpression("true").isValidExpression();
assertThat(((BooleanNode) expr).getValue()).isTrue();
expr = assertThatExpression("false").isValidExpression();
assertThat(((BooleanNode) expr).getValue()).isFalse();
expr = assertThatExpression("26").isValidExpression();
assertThat(((IntegerNode) expr).getValue()).isEqualTo(26);
expr = assertThatExpression("0xCAFE").isValidExpression();
assertThat(((IntegerNode) expr).getValue()).isEqualTo(0xCAFE);
expr = assertThatExpression("3.14").isValidExpression();
assertThat(((FloatNode) expr).getValue()).isEqualTo(3.14);
expr = assertThatExpression("3e-3").isValidExpression();
assertThat(((FloatNode) expr).getValue()).isEqualTo(3e-3);
expr = assertThatExpression("'Aa`! \\n \\r \\t \\\\ \\\' \"'").isValidExpression();
assertThat(((StringNode) expr).getValue()).isEqualTo("Aa`! \n \r \t \\ \' \"");
expr = assertThatExpression("'\\u2222 \\uEEEE \\u9EC4 \\u607A'").isValidExpression();
assertThat(((StringNode) expr).getValue()).isEqualTo("\u2222 \uEEEE \u9EC4 \u607A");
expr = assertThatExpression("'\u2222 \uEEEE \u9EC4 \u607A'").isValidExpression();
assertThat(((StringNode) expr).getValue()).isEqualTo("\u2222 \uEEEE \u9EC4 \u607A");
}
use of com.google.template.soy.exprtree.BooleanNode in project closure-templates by google.
the class ParseExpressionTest method testParseOperators.
@Test
public void testParseOperators() throws Exception {
ExprNode expr = assertThatExpression("-11").isValidExpression();
IntegerNode negInt = (IntegerNode) expr;
assertThat(negInt.getValue()).isEqualTo(-11);
expr = assertThatExpression("not false").isValidExpression();
NotOpNode notOp = (NotOpNode) expr;
assertThat(((BooleanNode) notOp.getChild(0)).getValue()).isFalse();
expr = assertThatExpression("90 -14.75").isValidExpression();
MinusOpNode minusOp = (MinusOpNode) expr;
assertThat(((IntegerNode) minusOp.getChild(0)).getValue()).isEqualTo(90);
assertThat(((FloatNode) minusOp.getChild(1)).getValue()).isEqualTo(14.75);
expr = assertThatExpression("$a or true").isValidExpression();
OrOpNode orOp = (OrOpNode) expr;
assertThat(orOp.getChild(0).toSourceString()).isEqualTo("$a");
assertThat(((BooleanNode) orOp.getChild(1)).getValue()).isTrue();
expr = assertThatExpression("$a ?: $b ?: $c").isValidExpression();
NullCoalescingOpNode nullCoalOp0 = (NullCoalescingOpNode) expr;
assertThat(nullCoalOp0.getChild(0).toSourceString()).isEqualTo("$a");
NullCoalescingOpNode nullCoalOp1 = (NullCoalescingOpNode) nullCoalOp0.getChild(1);
assertThat(nullCoalOp1.getChild(0).toSourceString()).isEqualTo("$b");
assertThat(nullCoalOp1.getChild(1).toSourceString()).isEqualTo("$c");
expr = assertThatExpression("$a?:$b==null?0*1:0x1").isValidExpression();
NullCoalescingOpNode nullCoalOp = (NullCoalescingOpNode) expr;
assertThat(nullCoalOp.getChild(0).toSourceString()).isEqualTo("$a");
ConditionalOpNode condOp = (ConditionalOpNode) nullCoalOp.getChild(1);
assertThat(condOp.getChild(0)).isInstanceOf(EqualOpNode.class);
assertThat(condOp.getChild(1)).isInstanceOf(TimesOpNode.class);
assertThat(condOp.getChild(2)).isInstanceOf(IntegerNode.class);
}
Aggregations