Examples of VerilogParserReader


Examples of net.sourceforge.veditor.parser.verilog.VerilogParserReader

  {
  }
   
  public static IParser createVerilogParser(String text, IProject project, IFile file)
  {
    VerilogParserReader reader = new VerilogParserReader(text, file);
    return new VerilogParser(reader, project, file);
  }
View Full Code Here

Examples of net.sourceforge.veditor.parser.verilog.VerilogParserReader

  private void scanFile(IFile file) {
    try {
      IParser parser=null;
      if (file.getName().endsWith(".v")){
        // VerilogParserReader handles verilog compiler directive
        ParserReader reader = new VerilogParserReader(file.getContents(), file);
        parser = ParserFactory.createVerilogParser(reader, m_Project,
            file);
      } else   if (file.getName().endsWith(".vhd")){
        ParserReader reader = new ParserReader(file.getContents());
        parser = ParserFactory.createVhdlParser(reader, m_Project, file);
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.