This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

jitar-reflection
TypeScript icon, indicating that this package has built-in type declarations

0.3.9 • Public • Published

Reflection package for Jitar

This package is used for reading and splitting Jitar applications.

To add this package to your project run:

npm install jitar-reflection

For more information about Jitar:

Known limitations

  1. Declaration of multiple values is not supported
// Supported
const a = 1;
export { a }

// Unsupported
const b = 2, c = 3;
export { b, c }
  1. Generator as object properties are not supported
// Supported
function* myGenerator() { /* ... */ }

// Supported
class Foo =
{
    *generator1() { /* ... */ }

    async *generator2() { /* ... */ }

    static *generator3() { /* ... */ }
};

// Unsupported
class Bar
{
  *[Symbol.iterator]() { /* ... */ }
}

Package Sidebar

Install

npm i jitar-reflection

Homepage

jitar.dev

Weekly Downloads

0

Version

0.3.9

License

MIT

Unpacked Size

78.1 kB

Total Files

96

Last publish

Collaborators

  • maskingtechnology