JSPM

power-assert-context-reducer-ast

1.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 164115
  • Score
    100M100P100Q186754F
  • License MIT

append AST into power-assert context

Package Exports

  • power-assert-context-reducer-ast

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (power-assert-context-reducer-ast) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

power-assert

Build Status NPM version License

powerAssertContext reducer function to parse assertion expression at runtime.

Use this function when transpiler side does not add ast, tokens and visitorKeys at compile time.

API

var appendAst = require('power-assert-context-reducer-ast');

var appendedContext = appendAst(powerAssertContext);

Given powerAssertContext object, having structure below but does not have ast, tokens and visitorKeys, append them to output context.

input:

{
    source: {
        content: 'assert(foo === bar)',
        filepath: 'test/some_test.js',
        line: 1
    },
    args: [
        {
            value: false,
            events: [
                {
                    value: "FOO",
                    espath: "arguments/0/left"
                },
                {
                    value: "BAR",
                    espath: "arguments/0/right"
                },
                {
                    value: false,
                    espath: "arguments/0"
                }
            ]
        }
    ]
}

output:

{
    source: {
        content: 'assert(foo === bar)',
        filepath: 'test/some_test.js',
        line: 1,
        ast: '### JSON representation of AST nodes ###',
        tokens: '### JSON representation of AST tokens ###',
        visitorKeys: '### JSON representation of AST visitor keys ###'
    },
    args: [
        {
            value: false,
            events: [
                {
                    value: "FOO",
                    espath: "arguments/0/left"
                },
                {
                    value: "BAR",
                    espath: "arguments/0/right"
                },
                {
                    value: false,
                    espath: "arguments/0"
                }
            ]
        }
    ]
}

INSTALL

$ npm install --save-dev power-assert-context-reducer-ast

AUTHOR

CONTRIBUTORS

LICENSE

Licensed under the MIT license.