"use strict"; function Text(src) { Object2D.call(this); } Text.prototype = Object.create(Object2D.prototype); Text.prototype.draw = function(context) { //TODO };