Sha256: 8e92d4601bf4113f43c49866e58bc4755edcb8eddcfdf98db47c7d1e0febfd53
Contents?: true
Size: 1.28 KB
Versions: 68
Compression:
Stored size: 1.28 KB
Contents
const AbstractGeneratorHandler = require("../../AbstractGeneratorHandler"); const CommonGenerator = require("../../../internal/CommonGenerator"); const SharedHandlerType = require("../../../internal/SharedHandlerType"); const OS = require("os"); class SharedInvokeInstanceMethodBodyHandler extends AbstractGeneratorHandler { generate_code(existing_string_builder, common_command, used_object, handlers) { handlers.SHARED_HANDLER[SharedHandlerType.RETURN_TYPE].generate_code(existing_string_builder, common_command, used_object.payload[1], handlers) existing_string_builder.append("this.instance.") existing_string_builder.append("invokeInstanceMethod") existing_string_builder.append("(") existing_string_builder.append("\"") existing_string_builder.append(used_object.payload[0]) existing_string_builder.append("\"") existing_string_builder.append(", ") CommonGenerator.process_method_arguments_names(existing_string_builder, common_command, used_object.payload[4], handlers) existing_string_builder.append(").") existing_string_builder.append("execute().resultValue") existing_string_builder.append(OS.EOL) } } module.exports = SharedInvokeInstanceMethodBodyHandler
Version data entries
68 entries across 39 versions & 1 rubygems