Add ability to exclude operations from Node API. Exclude flow control ops

This commit is contained in:
d98762625 2018-06-19 09:08:45 +01:00
parent 866b36729c
commit f95f01b895
2 changed files with 22 additions and 4 deletions

View file

@ -0,0 +1,15 @@
/**
* Operations to exlude from the Node API
*
* @author d98762656 [d98762625@gmail.com]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
export default [
"Fork",
"Merge",
"Jump",
"ConditionalJump",
"Label",
"Comment",
];