1 16 package com.google.gwt.dev.js.ast; 17 18 import java.math.BigInteger ; 19 20 23 public class JsIntegralLiteral extends JsExpression { 24 25 private final BigInteger value; 26 27 JsIntegralLiteral(BigInteger value) { 29 this.value = value; 30 } 31 32 public BigInteger getValue() { 33 return value; 34 } 35 36 public boolean isLeaf() { 37 return true; 38 } 39 40 public void traverse(JsVisitor v, JsContext ctx) { 41 v.visit(this, ctx); 42 v.endVisit(this, ctx); 43 } 44 } 45 | Popular Tags |