tern-abitbol

1.1.1 • Public • Published

Abitbol Tern Plugin

Build Status NPM Version License

Tern.js plugin to autocomplete Abitbol classes

Tern is a stand-alone code-analysis engine for JavaScript that can be used as text editor plugin to provide Javascript autocompletion.

Tern Abitbol is a Tern plugin that allows it to work with the Abitbol inheritance model (so it makes the autocompletion working with the Abitbol classes).

How To Install Abitbol Tern Plugin

To install Abitbol Tern Plugin, you first have to install the Tern plugin for your favorite editor. You can find instruction here:

The go to the folder where your tern plugin is installed (it should contain a node_modules folder), then simply install the Abitbol Tern Plugin in it:

npm install tern-abitbol

How To Use Abitbol Tern Plugin In A Project

To use Abitbol Tern Plugin to autocomplete your project, you should create a .tern-project file in the project's root folder, that should contain at least the following lines:

{
  "plugins": {
    "node": {},
    "abitbol": {}
  }
}

Please read the Tern documentation for more information about the .tern-project file:

A more complete example:

{
  "ecmaVersion": 6,
  "libs": [],
  "plugins": {
    "node": {},
    "abitbol": {}
  },
  "loadEagerly": [
    "./node_modules/photonui/src/photonui.js",
    "./app/js/**/*.js"
  ]
}

Changelog

  • 1.1.1: Find class names when parent's class name is name-spaced (foo.bar.ClassName)
  • 1.1.0: Improves class names ((file.js).ClassVariableName instead of AbitbolClassN)
  • 1.0.0:
    • $map.* autocompletion
    • First stable release!
  • 0.2.0:
    • Supports static properties (__classvars__)
    • Supports mixins (__include__)
    • Supports constructors (__init__)
    • Support most of the Abitbol special properties ($extend, $class, $map (incomplete), $data, $super)
  • 0.1.0: Cleaned version
  • 0.0.0: Basic POC (support inheritance, property inheritance and prototype extension)

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i tern-abitbol

    Weekly Downloads

    0

    Version

    1.1.1

    License

    BSD-3-Clause

    Last publish

    Collaborators

    • flozz