Examples of EvalExprEvent


Examples of org.stringtemplate.v4.debug.EvalExprEvent

    viewFrame.ast.setModel(astModel);

    // highlight output text and, if {...} subtemplate, region in ST src
    // get last event for currentScope.st; it's the event that captures ST eval
    if (currentEvent instanceof EvalExprEvent) {
      EvalExprEvent exprEvent = (EvalExprEvent)currentEvent;
      highlight(m.output, exprEvent.outputStartChar, exprEvent.outputStopChar);
      highlight(m.template, exprEvent.exprStartChar, exprEvent.exprStopChar);
    }
    else {
      EvalTemplateEvent templateEvent;
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.