File: /home/dmstechonline/whatsapp.dmstech.online/node_modules/php-parser/src/ast/selfreference.js
/**
* Copyright (C) 2018 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
"use strict";
const Reference = require("./reference");
const KIND = "selfreference";
/**
* Defines a class reference node
* @constructor SelfReference
* @memberOf module:php-parser
* @extends {Reference}
*/
const SelfReference = Reference.extends(
KIND,
function SelfReference(raw, docs, location) {
Reference.apply(this, [KIND, docs, location]);
this.raw = raw;
}
);
module.exports = SelfReference;