Example #1
0
    public override Object Clone()
    {
        IntegerLiteralExpImpl theClone = (IntegerLiteralExpImpl)base.Clone();

        theClone.integerSymbol = integerSymbol;
        return(theClone);
    }
Example #2
0
        public IntegerLiteralExp createIntegerLiteralExp(
            long symbol,
            CoreClassifier type)
        {
            IntegerLiteralExp exp = new IntegerLiteralExpImpl();

            exp.setFactory(this);

            exp.setIntegerSymbol(symbol);
            exp.setType(type);

            return(exp);
        }