mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
58 lines
1.7 KiB
Markdown
58 lines
1.7 KiB
Markdown
[![power-assert][power-assert-banner]][power-assert-url]
|
|
|
|
[![Build Status][travis-image]][travis-url]
|
|
[![NPM version][npm-image]][npm-url]
|
|
[![License][license-image]][license-url]
|
|
|
|
|
|
Provides base class of various power-assert-renderers.
|
|
|
|
|
|
API
|
|
---------------------------------------
|
|
|
|
Override these methods as necessary.
|
|
|
|
### BaseRenderer.prototype.onStart = function (powerAssertContext) {}
|
|
|
|
Called once when traversal starts. Argument is the `powerAssertContext` object under traversal.
|
|
|
|
### BaseRenderer.prototype.onData = function (esNode) {}
|
|
|
|
Called for each Node of AST in `powerAssertContext`. Argument is a `EsNode` object.
|
|
|
|
### BaseRenderer.prototype.onEnd = function () {}
|
|
|
|
Called once when traversal ends.
|
|
|
|
|
|
INSTALL
|
|
---------------------------------------
|
|
|
|
```sh
|
|
$ npm install --save-dev power-assert-renderer-base
|
|
```
|
|
|
|
|
|
AUTHOR
|
|
---------------------------------------
|
|
* [Takuto Wada](https://github.com/twada)
|
|
|
|
|
|
LICENSE
|
|
---------------------------------------
|
|
Licensed under the [MIT](https://github.com/twada/power-assert-runtime/blob/master/LICENSE) license.
|
|
|
|
|
|
[power-assert-url]: https://github.com/power-assert-js/power-assert
|
|
[power-assert-banner]: https://raw.githubusercontent.com/power-assert-js/power-assert-js-logo/master/banner/banner-official-fullcolor.png
|
|
|
|
[travis-url]: https://travis-ci.org/twada/power-assert-runtime
|
|
[travis-image]: https://secure.travis-ci.org/twada/power-assert-runtime.svg?branch=master
|
|
|
|
[npm-url]: https://npmjs.org/package/power-assert-renderer-base
|
|
[npm-image]: https://badge.fury.io/js/power-assert-renderer-base.svg
|
|
|
|
[license-url]: https://github.com/twada/power-assert-runtime/blob/master/LICENSE
|
|
[license-image]: https://img.shields.io/badge/license-MIT-brightgreen.svg
|