All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.prompto.statement.NativeCall.js Maven / Gradle / Ivy

var SimpleStatement = require("./SimpleStatement").SimpleStatement;
var VoidType = require("../type/VoidType").VoidType;

function NativeCall() {
	SimpleStatement.call(this);
	return this;
}
	
NativeCall.prototype = Object.create(SimpleStatement.prototype);
NativeCall.prototype.constructor = NativeCall;

NativeCall.prototype.toString = function() {
	return this.statement.toString();
};

NativeCall.prototype.check = function(context) {
	return VoidType.instance;
};

exports.NativeCall = NativeCall;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy