snapdragon-node
Snapdragon utility for creating a new AST node in custom code, such as plugins.
Table of Contents
- [Install](#install)
- [Usage](#usage)
- [API](#api)
- [About](#about)
Install
Install with npm:
$ npm install --save snapdragon-node
Usage
With snapdragon v0.9.0 and higher you can use this.node()
to create a new Node
, whenever it makes sense.
var Node = require('snapdragon-node');
var Snapdragon = require('snapdragon');
var snapdragon = new Snapdragon();
snapdragon.parser.set('foo', function() {
var pos = this.position();
var match = this.match(/foo/);
if (match) {
var node = pos(new Node(match[0]));
var node = pos(new Node(match[0], 'bar'));
var node = pos(new Node({type: 'bar', val: match[0]}));
return node;
}
});
API
Create a new AST Node
with the given val
and type
.
Params
val
{String|Object}: Pass a matched substring, or an object to merge onto the node.type
{String}: The node type to use when val
is a string.returns
{Object}: node instance
Example
var node = new Node('*', 'Star');
var node = new Node({type: 'star', val: '*'});
Define a non-enumberable property on the node instance.
Params
name
{String}val
{any}returns
{Object}: returns the node instance
Example
var node = new Node();
node.define('foo', 'something non-enumerable');
Given node foo
and node bar
, push node bar
onto foo.nodes
, and set foo
as bar.parent
.
Params
node
{Object}returns
{undefined}
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
foo.pushNode(bar);
Alias for pushNode for backwards compatibility with 0.1.0.
Given node foo
and node bar
, unshift node bar
onto foo.nodes
, and set foo
as bar.parent
.
Params
node
{Object}returns
{undefined}
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
foo.unshiftNode(bar);
Get the first child node from node.nodes
that matches the given type
. If type
is a number, the child node at that index is returned.
Params
type
{String}returns
{Object}: Returns a child node or undefined.
Example
var child = node.getNode(1);
var child = node.getNode('foo');
var child = node.getNode(/^(foo|bar)$/);
var child = node.getNode(['foo', 'bar']);
Return true if the node is the given type
.
Params
type
{String}returns
{Boolean}
Example
var node = new Node({type: 'bar'});
cosole.log(node.isType('foo'));
cosole.log(node.isType(/^(foo|bar)$/));
cosole.log(node.isType(['foo', 'bar']));
Return true if the node.nodes
has the given type
.
Params
type
{String}returns
{Boolean}
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
foo.pushNode(bar);
cosole.log(foo.hasType('qux'));
cosole.log(foo.hasType(/^(qux|bar)$/));
cosole.log(foo.hasType(['qux', 'bar']));
Get the siblings array, or null
if it doesn't exist.
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
foo.pushNode(bar);
foo.pushNode(baz);
console.log(bar.siblings.length)
console.log(baz.siblings.length)
Get the previous node from the siblings array or null
.
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
foo.pushNode(bar);
foo.pushNode(baz);
console.log(baz.prev.type)
Get the siblings array, or null
if it doesn't exist.
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
foo.pushNode(bar);
foo.pushNode(baz);
console.log(bar.siblings.length)
console.log(baz.siblings.length)
Get the node's current index from node.parent.nodes
. This should always be correct, even when the parent adds nodes.
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
var qux = new Node({type: 'qux'});
foo.pushNode(bar);
foo.pushNode(baz);
foo.unshiftNode(qux);
console.log(bar.index)
console.log(baz.index)
console.log(qux.index)
Get the first node from node.nodes
.
returns
{Object}: The first node, or undefiend
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
var qux = new Node({type: 'qux'});
foo.pushNode(bar);
foo.pushNode(baz);
foo.pushNode(qux);
console.log(foo.first.type)
Get the last node from node.nodes
.
returns
{Object}: The last node, or undefiend
Example
var foo = new Node({type: 'foo'});
var bar = new Node({type: 'bar'});
var baz = new Node({type: 'baz'});
var qux = new Node({type: 'qux'});
foo.pushNode(bar);
foo.pushNode(baz);
foo.pushNode(qux);
console.log(foo.last.type)
About
Related projects
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
Building docs
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verb
Running tests
Install dev dependencies:
$ npm install -d && npm test
Author
Jon Schlinkert
License
Copyright © 2017, Jon Schlinkert.
Released under the MIT license.
This file was generated by verb-generate-readme, v0.4.1, on January 21, 2017.