Package org.jvnet.sorcerer.Tag

Examples of org.jvnet.sorcerer.Tag.Literal


            /**
             * literal string, int, etc. Null.
             */
            public Void visitLiteral(LiteralTree lit, Void _) {
                gen.add(new Literal(cu,srcPos,lit));
                return super.visitLiteral(lit, _);
            }

            /**
             * Definition of a variable, such as parameter, field, and local variables.
View Full Code Here

TOP

Related Classes of org.jvnet.sorcerer.Tag.Literal

Copyright © 2018 www.massapicom. 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.