StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 years ago | |
---|---|---|
.. | ||
lib | 4 years ago | |
src | 4 years ago | |
CHANGELOG.md | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
package.json | 4 years ago |
README.md
Dynamic import support in acorn
This is plugin for Acorn - a tiny, fast JavaScript parser, written completely in JavaScript.
For more information, check out the proposal repo.
Usage
Importing this module gives you a plugin that can be used to extend an Acorn parser:
import Parser from 'acorn';
import dynamicImport from 'acorn-dynamic-import';
Parser.extend(dynamicImport).parse('import("something");');
To extend the AST walker for dynamic imports, you can injecting the new node type into acorn-walk
like this:
import inject from 'acorn-dynamic-import/lib/walk';
import * as acornWalk from 'acorn-walk';
const walk = inject(acornWalk);
License
This plugin is issued under the MIT license.