UNPKG
php-unparse
Version:
latest (0.2.9-zaoqi-4-3ad1f406283c42fe89f4e1a1d97a4c40ff0108fe)
0.2.9-zaoqi-4-3ad1f406283c42fe89f4e1a1d97a4c40ff0108fe
0.2.9-zaoqi-3-3ad1f406283c42fe89f4e1a1d97a4c40ff0108fe
0.2.9-zaoqi-2-2559f0ebe67dc862dc7084acdb22d7485afee6cf
0.2.9-zaoqi-1-7d9b5417f568c24512c9cc01d5e3b0ce24016dd3
Unparse the AST produced by glayzzle/php-parser back to code.
php-unparse
/
index.js
11 lines
(8 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/*jslint node: true, indent: 2 */
'use strict'
;
var
CodeGen
=
require
(
'./node_translators'
);
module
.
exports
=
function
(
ast, opts
) { opts = opts || {};
var
codeGen =
new
CodeGen
(opts);
return
codeGen.
process
(ast,
''
); };