How to use the BlockStatement function from babel-types
Find comprehensive JavaScript babel-types.BlockStatement code examples handpicked from public code repositorys.
GitHub: liangklfangl/webpack-core-usage
172 173 174 175 176 177 178 179 180 181
CallPath.remove(); } }, }); const astProgramBody = codeAst.program.body; const codeBlock = types.BlockStatement(astProgramBody); if (renderReturn) { astProgramBody.push(renderReturn); } const coceFunction = types.functionExpression(
11
103
3
+ 19 other calls in file
97 98 99 100 101 102 103 104 105 106
// the body of the function. // Take the object prepared so far and use it to initialize a AjaxPipe. // AjaxPipe will be used to maintain the types for response objects. // Soon. var body = t.BlockStatement([ t.ReturnStatement( t.NewExpression( t.Identifier('AjaxPipe'), [
4
9
2
+ 29 other calls in file
GitHub: liangklfangl/wcf
70 71 72 73 74 75 76 77 78 79
}); //End of traverse of codeAst, `import` and `ReactDOM.render` are all removed, only //a part of demo code remained! var astProgramBody = codeAst.program.body; //program.body are updated through previous manipulation var codeBlock = types.BlockStatement(astProgramBody); // ReactDOM.render always at the last of preview method if (renderReturn) { astProgramBody.push(renderReturn); }
8
15
2
+ 5 other calls in file
GitHub: JX-Zhuang/architect
19 20 21 22 23 24 25 26 27 28
body.body.forEach(body => { if (body.kind === 'constructor') { // console.log(body) // const statement = types.returnStatement(body.body); // console.log(statement) const block = types.BlockStatement([body.body]); // console.log(block) func = types.functionExpression(id, body.params, block, false, false); } });
2
6
2
GitHub: free-dev-gf/fe_build
109 110 111 112 113 114 115 116 117 118
if (types.isClassMethod(node)) { func = types.classMethod( node.kind, node.key, params, types.BlockStatement([tryStatement]), node.computed, node.static ); } else if (types.isObjectMethod(node)) {
0
0
0
+ 3 other calls in file
babel-types.identifier is the most popular function in babel-types (4076 examples)