forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseitem.js
More file actions
40 lines (35 loc) · 958 Bytes
/
useitem.js
File metadata and controls
40 lines (35 loc) · 958 Bytes
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
/*!
* Copyright (C) 2017 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
"use strict";
var Statement = require('./statement');
var KIND = 'useitem';
/**
* Defines a use statement (from namespace)
* @constructor UseItem
* @extends {Statement}
* @property {String} name
* @property {String|null} type - Possible value : function, const
* @property {String|null} alias
* @see {Namespace}
* @see http://php.net/manual/en/language.namespaces.importing.php
*/
var UseItem = Statement.extends(function UseItem(name, alias, type, location) {
Statement.apply(this, [KIND, location]);
this.name = name;
this.alias = alias;
this.type = type;
});
/**
* Importing a constant
* @constant {String} TYPE_CONST
*/
UseItem.TYPE_CONST = 'const';
/**
* Importing a function
* @constant {String} TYPE_FUNC
*/
UseItem.TYPE_FUNCTION = 'function';
module.exports = UseItem;