forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclaration.js
More file actions
45 lines (40 loc) · 1.1 KB
/
declaration.js
File metadata and controls
45 lines (40 loc) · 1.1 KB
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
/*!
* Copyright (C) 2017 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
var Statement = require('./statement');
var KIND = 'declaration';
var IS_PUBLIC = 'public';
var IS_PROTECTED = 'protected';
var IS_PRIVATE = 'private';
/**
* A declaration statement (function, class, interface...)
* @constructor Declaration
* @extends {Statement}
* @property {string} name
*/
var Declaration = Statement.extends(function Declaration(kind, name, location) {
Statement.apply(this, [kind || KIND, location]);
this.name = name;
});
/**
* Generic flags parser
* @param {Integer[]} flags
* @return {void}
*/
Declaration.prototype.parseFlags = function(flags) {
this.isAbstract = flags[2] === 1;
this.isFinal = flags[2] === 2;
if (this.kind !== 'class') {
if (flags[0] === 0) {
this.visibility = IS_PUBLIC;
} else if (flags[0] === 1) {
this.visibility = IS_PROTECTED;
} else if (flags[0] === 2) {
this.visibility = IS_PRIVATE;
}
this.isStatic = flags[1] === 1;
}
};
module.exports = Declaration;