Package frege.compiler.types.Global

Examples of frege.compiler.types.Global.TMessage


    
    while (!monitor.isCanceled() && maxmsgs > 0) {
      TList.DCons node = msgs._Cons();
      if (node == null) break;
      msgs = node.mem2.<TList>forced();
      TMessage msg = Delayed.<TMessage>forced( node.mem1 );
      if (mcwb != null) {
        // do also warnings and hints
        int sev = IMarker.SEVERITY_ERROR;
        if (TMessage.level(msg) == TSeverity.HINT) sev = IMarker.SEVERITY_INFO;
        else if (TMessage.level(msg) == TSeverity.WARNING)
View Full Code Here

TOP

Related Classes of frege.compiler.types.Global.TMessage

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.