Package net.sourceforge.veditor.parser.verilog.VerilogOutlineElementFactory

Examples of net.sourceforge.veditor.parser.verilog.VerilogOutlineElementFactory.VerilogFunctionElement


          }         
        }
       
       
      }else if (element instanceof VerilogFunctionElement) {
        VerilogFunctionElement func = (VerilogFunctionElement) element;
        for(OutlineElement child: func.getChildren()){
          //add signals
          if (child instanceof VerilogSignalElement && child.getName().startsWith(replace)) {
            VerilogSignalElement signal = (VerilogSignalElement) child;
            matchList.add(new VerilogCompletionProposal(signal, offset, replace.length()));   
          }         
View Full Code Here

TOP

Related Classes of net.sourceforge.veditor.parser.verilog.VerilogOutlineElementFactory.VerilogFunctionElement

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.