0.3.9 • Published 1 year ago

jitar-reflection v0.3.9

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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]() { /* ... */ }
}
0.3.9

1 year ago

0.3.7

1 year ago

0.3.6

1 year ago

0.3.5

1 year ago

0.3.4

1 year ago