Package httl.ast

Examples of httl.ast.MacroDirective


          }
          if (out) {
            directives.add(new ValueDirective((Expression) expressionParser.parse(expr, exprOffset), true, offset));
          }
          macroName = macroName.trim();
          directives.add(new MacroDirective(macroName, offset));
          if (StringUtils.isNotEmpty(macroParams)) {
            defineVariableTypes(macroParams, exprOffset, directives);
          }
        } else if (StringUtils.inArray(name, endDirective)) {
          directives.add(new EndDirective(offset));
View Full Code Here

TOP

Related Classes of httl.ast.MacroDirective

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.