forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclare.js
More file actions
64 lines (57 loc) · 1.37 KB
/
declare.js
File metadata and controls
64 lines (57 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*!
* Copyright (C) 2017 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
var Block = require('./block');
var KIND = 'declare';
/**
* The declare construct is used to set execution directives for a block of code
* @constructor Declare
* @extends {Block}
* @property {Expression[]} what
* @property {String} mode
* @see http://php.net/manual/en/control-structures.declare.php
*/
var Declare = Block.extends(function Declare(what, body, mode, location) {
Block.apply(this, [KIND, body, location]);
this.what = what;
this.mode = mode;
});
/**
* The node is declared as a short tag syntax :
* ```php
* <?php
* declare(ticks=1):
* // some statements
* enddeclare;
* ```
* @constant {String} MODE_SHORT
*/
Declare.MODE_SHORT = 'short';
/**
* The node is declared bracket enclosed code :
* ```php
* <?php
* declare(ticks=1) {
* // some statements
* }
* ```
* @constant {String} MODE_BLOCK
*/
Declare.MODE_BLOCK = 'block';
/**
* The node is declared as a simple statement. In order to make things simpler
* children of the node are automatically collected until the next
* declare statement.
* ```php
* <?php
* declare(ticks=1);
* // some statements
* declare(ticks=2);
* // some statements
* ```
* @constant {String} MODE_NONE
*/
Declare.MODE_NONE = 'none';
module.exports = Declare;