This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 133900

Summary: Parsing API
Product: editor Reporter: Jan Becicka <jbecicka>
Component: Parsing & IndexingAssignee: Jan Jancura <jjancura>
Status: RESOLVED FIXED    
Severity: blocker CC: mmirilovic, vv159170
Priority: P1 Keywords: PLAN
Version: 6.x   
Hardware: All   
OS: All   
URL: http://wiki.netbeans.org/ParsingAPI
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on: 127357, 136169, 136641    
Bug Blocks: 90724    

Description Jan Becicka 2008-04-25 07:56:39 UTC
NetBeans IDE is no longer just Java IDE. We support many various languages: Java, Ruby, PHP, JSP, Javascript and so on.
Each language support module implements its own parsing framework. We have Retouche for Java, GSF for Ruby, Schliemann
for Javascript. Now is the right time to consiladate those framworks in order to avoid code duplication, improve
performance, solve threading issues, consolidate features and allow language embedding.

We want to create Parsing API to:

    * Unify registration of parsers
    * Allow language embedding
    * Allow file indexing
    * Unify threading, starting/canceling parser tasks
    * Avoid code duplication
    * Simplify implementation of language supports
Comment 1 Jan Jancura 2008-11-27 20:28:04 UTC
Parsing API was merged to trunk. Java Module is rewritten on top of Parsing API.
Indexing is not a part of this merge.
Comment 2 Vitezslav Stejskal 2009-05-11 08:48:40 UTC
This has been done.