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

js.prompto.csharp.CSharpNativeCall.js Maven / Gradle / Ivy

var NativeCall = require("../statement/NativeCall").NativeCall;

function CSharpNativeCall(statement) {
	NativeCall.call(this);
	this.statement = statement;
	return this;
}

CSharpNativeCall.prototype = Object.create(NativeCall.prototype);
CSharpNativeCall.prototype.constructor = CSharpNativeCall;

CSharpNativeCall.prototype.toDialect = function(writer) {
    writer.append("C#: ");
    this.statement.toDialect(writer);
};


exports.CSharpNativeCall = CSharpNativeCall;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy