(c, tags)
| 1188 | |
| 1189 | HTMLString.Character = (function() { |
| 1190 | function Character(c, tags) { |
| 1191 | this._c = c; |
| 1192 | if (c.length > 1) { |
| 1193 | this._c = c.toLowerCase(); |
| 1194 | } |
| 1195 | this._tags = []; |
| 1196 | this.addTags.apply(this, tags); |
| 1197 | } |
| 1198 | |
| 1199 | Character.prototype.c = function() { |
| 1200 | return this._c; |
nothing calls this directly
no outgoing calls
no test coverage detected