1 /** 2 * @fileoverview Class represents the tag-name token. 3 */ 4 5 goog.provide('xrx.token.TagName'); 6 7 8 9 goog.require('xrx.token'); 10 11 12 13 /** 14 * Constructs a new tag name token. 15 * @constructor 16 * @extends xrx.token 17 */ 18 xrx.token.TagName = function(label, opt_offset, opt_length) { 19 goog.base(this, xrx.token.TAG_NAME, label, opt_offset, opt_length); 20 }; 21 goog.inherits(xrx.token.TagName, xrx.token);