forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypereference.js
More file actions
40 lines (36 loc) · 726 Bytes
/
typereference.js
File metadata and controls
40 lines (36 loc) · 726 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) 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 = "typereference";
/**
* Defines a class reference node
* @constructor TypeReference
* @extends {Reference}
* @property {string} name
*/
const TypeReference = Reference.extends(KIND, function TypeReference(
name,
raw,
docs,
location
) {
Reference.apply(this, [KIND, docs, location]);
this.name = name;
this.raw = raw;
});
TypeReference.types = [
"int",
"float",
"string",
"bool",
"object",
"array",
"callable",
"iterable",
"void"
];
module.exports = TypeReference;