UNPKG

770 BJavaScriptView Raw
1// Generated by CoffeeScript 1.6.2
2(function() {
3 var Composed, Subcomponent,
4 __hasProp = {}.hasOwnProperty,
5 __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
6
7 Composed = require('./Composed');
8
9 Subcomponent = (function(_super) {
10 __extends(Subcomponent, _super);
11
12 function Subcomponent(raw) {
13 this.raw = raw;
14 return;
15 }
16
17 Subcomponent.prototype.getValue = function() {
18 return this.raw;
19 };
20
21 return Subcomponent;
22
23 })(Composed);
24
25 module.exports = Subcomponent;
26
27}).call(this);