Package macromedia.asc.embedding

Examples of macromedia.asc.embedding.LintEvaluator$LintDataRecord


    // run -strict and -coach
    if (as3Configuration.warnings())
    {
      cx.pushScope(node.frame);

      LintEvaluator lint = new LintEvaluator(cx, unit.getSource().getName(), warnMap);
      node.evaluate(cx, lint);
      cx.popScope();
            lint.simpleLogWarnings(cx, coachWarningsAsErrors);
            // if we want to go back to the verbose style of warnings, uncomment the line below and
            // comment out the line above
            //lint.logWarnings(context.cx);

      lint.clear();
    }

    if (ThreadLocalToolkit.errorCount() > 0)
    {
      return;
View Full Code Here

TOP

Related Classes of macromedia.asc.embedding.LintEvaluator$LintDataRecord

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.