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

12 lines
233 B
JavaScript
Raw Normal View History

2019-07-25 22:22:32 +02:00
/**
* 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;