php-parser
Version:
Parse PHP code from JS and returns its AST
27 lines (24 loc) • 622 B
JavaScript
/**
* Copyright (C) 2018 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
;
const Node = require("./node");
const KIND = "traituse";
/**
* Defines a trait usage
* @constructor TraitUse
* @memberOf module:php-parser
* @extends {Node}
* @property {Identifier[]} traits
* @property {Node[]|null} adaptations
*/
module.exports = Node.extends(
KIND,
function TraitUse(traits, adaptations, docs, location) {
Node.apply(this, [KIND, docs, location]);
this.traits = traits;
this.adaptations = adaptations;
},
);