r3-legacy/src/r3-runtime-coder-0.js

12 lines
233 B
JavaScript

/**
* R3.Runtime.Coder
* @constructor
*/
R3.Runtime.Coder = function() {
R3.Runtime.call(this);
};
R3.Runtime.Coder.prototype = Object.create(R3.Runtime.prototype);
R3.Runtime.Coder.prototype.constructor = R3.Runtime.Coder;