(functionName, jsFunction, options)
| 7995 | _inherits(CPUFunctionNode, _BaseFunctionNode); |
| 7996 | |
| 7997 | function CPUFunctionNode(functionName, jsFunction, options) { |
| 7998 | _classCallCheck(this, CPUFunctionNode); |
| 7999 | |
| 8000 | var _this = _possibleConstructorReturn(this, (CPUFunctionNode.__proto__ || Object.getPrototypeOf(CPUFunctionNode)).call(this, functionName, jsFunction, options)); |
| 8001 | |
| 8002 | _this.paramSizes = options ? options.paramSizes : []; |
| 8003 | _this.memberStates = []; |
| 8004 | return _this; |
| 8005 | } |
| 8006 | |
| 8007 | _createClass(CPUFunctionNode, [{ |
| 8008 | key: 'pushMemberState', |
nothing calls this directly
no test coverage detected