jtenner

Results 43 issues of jtenner

Let's make a mess. - Need to add: ```ts ASON.getOwnMethodNames(value); ASON.getOwnPropertyNames(value); ASON.getProperty(value, nameStr): ASONReflectionProperty; // computed or not ASON.getMethod(value, nameStr, isStatic = false): ASONReflectionMethod; // static or not ASON.serializeReflected(value): StaticArray;...

documentation
enhancement

I don't think these function names are correct. However, the idea of what the functions represent might actually be important. Ergonomic hand holding.

documentation
enhancement

Hey! I couldn't run the aspect tests until I ran prettier and updated the as-pect version. This pull request is a lot bigger than I intended it to be. Sorry...

I found a fun use case when trying to identify `ReferencedIdentifier`s within a function scope. It would not update the scope if repeated calls to `path.replaceWith` were used from within...

i: bug
pkg: traverse (scope)

When dealing with adding global types for end users, as-pect and cli tools have always relied on adding something like this to an end user's project: ```ts /// ``` I...

⯈ Initial attempt on implementing `arguments.length` - [x] I've read the contributing guidelines

This pull request adds a simple function for creating a compound named type with type parameters using an array of `IdentifierExpression` objects - [x] I've read the contributing guidelines Question:...

A large portion of the AssemblyScript community could really use a way to parse http, and making bindings for something battle tested and safe would be beneficial to help aid...

https://github.com/as-pect/as-pect/blob/c438cc60ca4ba227a2c1e6c81d9fd05e70db6bba/packages/assembly/assembly/internal/Expectation.ts#L443 This line should be wrapped like this: ```ts if (isNullable(actual)) { length = actual!.length; } else { length = actual.length; } ```