| branch | jsdoc |
| changeset 520 | fe008e95a716 |
| 519:46e21d060650 | 520:fe008e95a716 |
|---|---|
1 if (typeof JSDOC == "undefined") JSDOC = {}; |
|
2 |
|
3 /** |
|
4 @constructor |
|
5 */ |
|
6 JSDOC.Token = function(data, type, name) { |
|
7 this.data = data; |
|
8 this.type = type; |
|
9 this.name = name; |
|
10 } |
|
11 |
|
12 JSDOC.Token.prototype.toString = function() { |
|
13 return "<"+this.type+" name=\""+this.name+"\">"+this.data+"</"+this.type+">"; |
|
14 } |
|
15 |
|
16 JSDOC.Token.prototype.is = function(what) { |
|
17 return this.name === what || this.type === what; |
|
18 } |