Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

FAQ How do I implement a DOM for my language?

Revision as of 10:30, 19 February 2007 by Peter.braker.nl.compuware.com (Talk | contribs) (wikify)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A DOM represents the structure of your programming language. Its design and implementation are dependent of the target language and follow a few simple guidelines:

  • The DOM is hierarchical in nature and directly represents concrete elements in the program it represents (such as the program itself and its functions, declarations, and statements).
  • A DOM is used for defining context for Content Assist (see FAQ How do I add Content Assist to my language editor?.
  • A DOM is useful for generating text hovers (see FAQ How do I add hover support to my text editor?.
  • Creating outline views without a DOM is difficult (see FAQ How do I create an Outline view for my own language editor?.
  • A DOM is essential in architecting and implementing support for refactoring (see FAQ How do I support refactoring for my own language?.
  • A program may be represented with various DOMs. In the case of eScript we have a DOM for describing the program structure and a second DOM for the method bodies.
  • A DOM is implemented as a data structure with access API. In the case of eScript, we move Content Assist and text-hover support into the DOM nodes. This makes handling those in the editor very easy.
  • A DOM can be generated in two modes:
    • The same compiler that also compiles source code can save its abstract syntax tree (AST) and expose it for use by the editor. Using an AST is a pretty standard way to implement a computer language, and piggybacking on that infrastructure makes life a lot easier when writing your editor. This is the way the eScript editor works.
    • If the underlying AST is not accessible or is to too fine-grained for use in an editor, you may decide to implement a lightweight parser and generate a DOM more efficiently. This is the way the JDT implements its Java model.

Figure 19.2 shows the inheritance hierarchy for the DOM that was developed for the eScript's language. As you can see, each node in the DOM extends Element. It defines the following fields:

   int startOffset, endOffset; // source positions
   Hashtable attributes;       // things like ID, label, ...
   ArrayList children;         // children of this element
   Element parent;             // the owner of this element
   String hoverHelp;           // cached value of hover help
   ...more fields....

The subclasses of Element implement useful methods:

   public String getAttributeValue(String name)
   public String getHoverHelp()
   public void getContentProposals(...., ArrayList result)   

For instance, the getHoverHelp method easily allows us to use the DOM to find the element at a given offset and then ask it for what hover help is appropriate.



See Also:

FAQ How can I ensure that my model is scalable?


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top