Blame view

node_modules/stylus/lib/nodes/namespace.js 1.01 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /*!
   * Stylus - Namespace
   * Copyright (c) Automattic <developer.wordpress.com>
   * MIT Licensed
   */
  
  /**
   * Module dependencies.
   */
  
  var Node = require('./node');
  
  /**
   * Initialize a new `Namespace` with the given `val` and `prefix`
   *
   * @param {String|Call} val
   * @param {String} [prefix]
   * @api public
   */
  
  var Namespace = module.exports = function Namespace(val, prefix){
    Node.call(this);
    this.val = val;
    this.prefix = prefix;
  };
  
  /**
   * Inherit from `Node.prototype`.
   */
  
  Namespace.prototype.__proto__ = Node.prototype;
  
  /**
   * Return @namespace "val".
   *
   * @return {String}
   * @api public
   */
  
  Namespace.prototype.toString = function(){
    return '@namespace ' + (this.prefix ? this.prefix + ' ' : '') + this.val;
  };
  
  /**
   * Return a JSON representation of this node.
   *
   * @return {Object}
   * @api public
   */
  
  Namespace.prototype.toJSON = function(){
    return {
      __type: 'Namespace',
      val: this.val,
      prefix: this.prefix,
      lineno: this.lineno,
      column: this.column,
      filename: this.filename
    };
  };