Bump version to 2.0.1
[dygraphs.git] / jsdoc-toolkit / app / lib / JSDOC / Token.js
CommitLineData
629a09ae
DV
1if (typeof JSDOC == "undefined") JSDOC = {};
2
3/**
4 @constructor
5*/
6JSDOC.Token = function(data, type, name) {
7 this.data = data;
8 this.type = type;
9 this.name = name;
10}
11
12JSDOC.Token.prototype.toString = function() {
13 return "<"+this.type+" name=\""+this.name+"\">"+this.data+"</"+this.type+">";
14}
15
16JSDOC.Token.prototype.is = function(what) {
17 return this.name === what || this.type === what;
18}