TypeScript API Program
使用方法getSyntacticDiagnostics
来获取语法错误。但如果没有Program
,只需SourceFile
我如何才能获得相同类型的信息?
我通过
创建了SourceFile
function createSourceFile(fileName: string, sourceText: string, languageVersion: ScriptTarget, setParentNodes?: boolean, scriptKind?: ScriptKind): SourceFile;
答案 0 :(得分:1)
请记住,createSourceFile中的fileName
(字符串)参数是虚拟文件名。使用TypeScript库时,此文件名(字符串)用于全局。
您需要的最重要的事情是createProgam
方法的文档评论。 程序是'SourceFile'和'CompilerOptions'的不可变集合,代表编译单元。 createProgam
方法作为第一个参数需要字符串列表,这是本程序中使用的文件的虚拟名称
如果您不理解前两个理论段落,我认为样本中的注释会对您有所帮助。
// this is the real code of file. Use fs.readFile, fs.readFileSync or something other to load file real source code.
var code = "class 1X {}";
// I will use this virtual name to reference SourceFile while working with TypeScript API.
var virtualFileName = "aaa.ts";
// initialize SourceFile instance
var sf = ts.createSourceFile(virtualFileName, code, ts.ScriptTarget.ES5);
// Make program as collection of my one virtual file
var prog = ts.createProgram([virtualFileName], {});
// process response as you need.
console.log(prog.getSyntacticDiagnostics(sf));