diff --git a/lib/utils/classes.js b/lib/utils/classes.js index 7fdad13..f73bf58 100644 --- a/lib/utils/classes.js +++ b/lib/utils/classes.js @@ -1,9 +1,5 @@ /* Class utilities */ var classes = { - /* - * The code needs to be in sync with the code template in the compilation - * function for "action" nodes. - */ subclass: function(child, parent) { function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;