/*!
* 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 Eif (flags[0] === 2) {
this.visibility = IS_PRIVATE;
}
this.isStatic = flags[1] === 1;
}
};
module.exports = Declaration;
|