Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sugget Add a new transfomer api like ts.createRegularExpressionLiteral #23992

Closed
paranoidjk opened this issue May 9, 2018 · 1 comment
Closed
Labels
API Relates to the public API for TypeScript Bug A bug in TypeScript Fixed A PR has been merged for this issue Help Wanted You can do this

Comments

@paranoidjk
Copy link

Search Terms

Suggestion

Use Cases

Right now there are plenty factory api in typescript transformer, eg:

declare namespace ts {
    function createNodeArray<T extends Node>(elements?: ReadonlyArray<T>, hasTrailingComma?: boolean): NodeArray<T>;
    /** If a node is passed, creates a string literal whose source text is read from a source node during emit. */
    function createLiteral(value: string | StringLiteral | NoSubstitutionTemplateLiteral | NumericLiteral | Identifier): StringLiteral;
    function createLiteral(value: number): NumericLiteral;
    function createLiteral(value: boolean): BooleanLiteral;
    function createLiteral(value: string | number | boolean): PrimaryExpression;
    function createNumericLiteral(value: string): NumericLiteral;
    function createIdentifier(text: string): Identifier;
    function updateIdentifier(node: Identifier): Identifier;
    /** Create a unique temporary variable. */
    function createTempVariable(recordTempVariable: ((node: Identifier) => void) | undefined): Identifier;
    /** Create a unique temporary variable for use in a loop. */
    function createLoopVariable(): Identifier;
    /** Create a unique name based on the supplied text. */
    function createUniqueName(text: string): Identifier;

...
...
...

But i have searched the codebase and all issue, seems like we can not create a RegularExpressionLiteral through transfomer api, If i understand correctly, please consider add a api to do this. If not, i am willing to hear any solution. 😄

Examples

Checklist

My suggestion meets these guidelines:
[ ] This wouldn't be a breaking change in existing TypeScript / JavaScript code
[ ] This wouldn't change the runtime behavior of existing JavaScript code
[ ] This could be implemented without emitting different JS based on the types of the expressions
[ ] This isn't a runtime feature (e.g. new expression-level syntax)

@mhegazy mhegazy added Bug A bug in TypeScript API Relates to the public API for TypeScript Help Wanted You can do this labels May 9, 2018
@mhegazy mhegazy added this to the Community milestone May 9, 2018
@mhegazy
Copy link
Contributor

mhegazy commented May 9, 2018

A PR would be appreciated

ajafff added a commit to ajafff/TypeScript that referenced this issue May 9, 2018
@mhegazy mhegazy modified the milestones: Community, TypeScript 2.9 May 10, 2018
@mhegazy mhegazy added the Fixed A PR has been merged for this issue label May 10, 2018
@microsoft microsoft locked and limited conversation to collaborators Jul 31, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
API Relates to the public API for TypeScript Bug A bug in TypeScript Fixed A PR has been merged for this issue Help Wanted You can do this
Projects
None yet
Development

No branches or pull requests

2 participants