Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Orion/Dependency resolution

< Orion
Revision as of 09:18, 8 October 2014 by Unnamed Poltroon (Talk) (Created page with "''Dependency resolution'' refers to the ability to resolve a type of cross-file dependency to a file in the workspace at development time. Examples of dependencies within our...")

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

Dependency resolution refers to the ability to resolve a type of cross-file dependency to a file in the workspace at development time. Examples of dependencies within our scope are:

  • src and href attributes in an HTML file
  • @import statements in a CSS file
  • define([ deps.. ]) and require([ deps.. ]) in a JS file (AMD modules)
  • require() in a JS file (Node.js/CommonJS)
  • importScripts() in a JS file (Worker API)

Dependency resolution is a prerequisite feature before we can implement cross-file type inference and content assist.

Back to the top