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