Examples of valueString()


Examples of st.gravel.support.compiler.ast.FixedPointLiteralNode.valueString()

  @Test
  public void testParseFixedPointWithZero2() {
    final FixedPointLiteralNode _node;
    _node = ((FixedPointLiteralNode) Parser.factory.source_("0.05s").parseExpression());
    assertEquals((st.gravel.support.jvm.SmalltalkFactory) FixedPointLiteralNode.factory, (st.gravel.support.jvm.SmalltalkFactory) _node.factory());
    assertEquals((String) "0.05s", (String) _node.valueString());
  }

  @Test
  public void testParseFloat() {
    final FloatLiteralNode _node;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.