summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/src/DocDown/Alias.php
blob: 0a7c552e0dc123d7cd91c9bf63115c253432d392 (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php

/**
 * A class to represent a JSDoc entry alias.
 */
class Alias {

  /**
   * The alias owner.
   *
   * @memberOf Alias
   * @type Object
   */
  public $owner;

  /*--------------------------------------------------------------------------*/

  /**
   * The Alias constructor.
   *
   * @constructor
   * @param {String} $name The alias name.
   * @param {Object} $owner The alias owner.
   */
  public function __construct( $name, $owner ) {
    $this->owner = $owner;
    $this->_name = $name;
    $this->_call = $owner->getCall();
    $this->_category = $owner->getCategory();
    $this->_desc = $owner->getDesc();
    $this->_example = $owner->getExample();
    $this->_isCtor = $owner->isCtor();
    $this->_isLicense = $owner->isLicense();
    $this->_isPlugin = $owner->isPlugin();
    $this->_isPrivate = $owner->isPrivate();
    $this->_isStatic = $owner->isStatic();
    $this->_lineNumber = $owner->getLineNumber();
    $this->_members = $owner->getMembers();
    $this->_params = $owner->getParams();
    $this->_returns = $owner->getReturns();
    $this->_type = $owner->getType();
  }

  /*--------------------------------------------------------------------------*/

  /**
   * Extracts the entry's `alias` objects.
   *
   * @memberOf Alias
   * @param {Number} $index The index of the array value to return.
   * @returns {Array|String} The entry's `alias` objects.
   */
  public function getAliases( $index = null ) {
    $result = array();
    return $index !== null
      ? @$result[$index]
      : $result;
  }

  /**
   * Extracts the function call from the owner entry.
   *
   * @memberOf Alias
   * @returns {String} The function call.
   */
  public function getCall() {
    return $this->_call;
  }

  /**
   * Extracts the owner entry's `category` data.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's `category` data.
   */
  public function getCategory() {
    return $this->_category;
  }

  /**
   * Extracts the owner entry's description.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's description.
   */
  public function getDesc() {
    return $this->_desc;
  }

  /**
   * Extracts the owner entry's `example` data.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's `example` data.
   */
  public function getExample() {
    return $this->_example;
  }

  /**
   * Checks if the entry is an alias.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true`.
   */
  public function isAlias() {
    return true;
  }

  /**
   * Checks if the owner entry is a constructor.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true` if a constructor, else `false`.
   */
  public function isCtor() {
    return $this->_isCtor;
  }

  /**
   * Checks if the owner entry is a license.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true` if a license, else `false`.
   */
  public function isLicense() {
    return $this->_isLicense;
  }

  /**
   * Checks if the owner entry *is* assigned to a prototype.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true` if assigned to a prototype, else `false`.
   */
  public function isPlugin() {
    return $this->_isPlugin;
  }

  /**
   * Checks if the owner entry is private.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true` if private, else `false`.
   */
  public function isPrivate() {
    return $this->_isPrivate;
  }

  /**
   * Checks if the owner entry is *not* assigned to a prototype.
   *
   * @memberOf Alias
   * @returns {Boolean} Returns `true` if not assigned to a prototype, else `false`.
   */
  public function isStatic() {
    return $this->_isStatic;
  }

  /**
   * Resolves the owner entry's line number.
   *
   * @memberOf Alias
   * @returns {Number} The owner entry's line number.
   */
  public function getLineNumber() {
    return $this->_lineNumber;
  }

  /**
   * Extracts the owner entry's `member` data.
   *
   * @memberOf Alias
   * @param {Number} $index The index of the array value to return.
   * @returns {Array|String} The owner entry's `member` data.
   */
  public function getMembers( $index = null ) {
    return $index !== null
      ? @$this->_members[$index]
      : $this->_members;
  }

  /**
   * Extracts the owner entry's `name` data.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's `name` data.
   */
  public function getName() {
    return $this->_name;
  }

  /**
   * Extracts the owner entry's `param` data.
   *
   * @memberOf Alias
   * @param {Number} $index The index of the array value to return.
   * @returns {Array} The owner entry's `param` data.
   */
  public function getParams( $index = null ) {
    return $index !== null
      ? @$this->_params[$index]
      : $this->_params;
  }

  /**
   * Extracts the owner entry's `returns` data.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's `returns` data.
   */
  public function getReturns() {
    return $this->_returns;
  }

  /**
   * Extracts the owner entry's `type` data.
   *
   * @memberOf Alias
   * @returns {String} The owner entry's `type` data.
   */
  public function getType() {
    return $this->_type;
  }
}
?>