本文介绍了TypeScript-> AST->打字稿的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一种方法可以将TypeScript文件解析为AST,修改AST,然后解析为工具 + 可以吗?

Is there a way to parse a TypeScript file to an AST, modify the AST, and parse it then back to TypeScript as the tools Esprima + Escodegen are able to?

重要的是,我不想先将TypeScript代码编译/转换为JavaScript。

Important is that I do NOT want to compile/transpile the TypeScript code first into JavaScript.

推荐答案

是,使用Typescript 2.x可以转换ast。这是一篇关于它的好博客文章。在正式的打字稿Wiki中,它的记录还不够好。

Yes, with Typescript 2.x you can transform ast. Here is a good blog post about it http://blog.scottlogic.com/2017/05/02/typescript-compiler-api-revisited.html. In the official typescript wiki it is not well documented yet.

这篇关于TypeScript-> AST->打字稿的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 12:26