Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113086662
AASTToken.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, May 14, 20:53
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 16, 20:53 (2 d)
Engine
blob
Format
Raw Data
Handle
26144890
Attached To
rPHU libphutil
AASTToken.php
View Options
<?php
abstract
class
AASTToken
{
protected
$id
;
protected
$typeID
;
protected
$typeName
;
protected
$value
;
protected
$offset
;
protected
$tree
;
public
function
__construct
(
$id
,
$type
,
$value
,
$offset
,
AASTTree
$tree
)
{
$this
->
id
=
$id
;
$this
->
typeID
=
$type
;
$this
->
value
=
$value
;
$this
->
offset
=
$offset
;
$this
->
tree
=
$tree
;
}
public
final
function
getTokenID
()
{
return
$this
->
id
;
}
public
final
function
getTypeID
()
{
return
$this
->
typeID
;
}
public
function
getTypeName
()
{
if
(
empty
(
$this
->
typeName
))
{
$this
->
typeName
=
$this
->
tree
->
getTokenTypeNameFromTypeID
(
$this
->
typeID
);
}
return
$this
->
typeName
;
}
public
final
function
getValue
()
{
return
$this
->
value
;
}
public
final
function
getOffset
()
{
return
$this
->
offset
;
}
abstract
public
function
isComment
();
abstract
public
function
isAnyWhitespace
();
public
function
isSemantic
()
{
return
!(
$this
->
isComment
()
||
$this
->
isAnyWhitespace
());
}
public
function
getPrevToken
()
{
$tokens
=
$this
->
tree
->
getRawTokenStream
();
return
idx
(
$tokens
,
$this
->
id
-
1
);
}
public
function
getNextToken
()
{
$tokens
=
$this
->
tree
->
getRawTokenStream
();
return
idx
(
$tokens
,
$this
->
id
+
1
);
}
public
function
getNonsemanticTokensBefore
()
{
$tokens
=
$this
->
tree
->
getRawTokenStream
();
$result
=
array
();
$ii
=
$this
->
id
-
1
;
while
(
$ii
>=
0
&&
!
$tokens
[
$ii
]->
isSemantic
())
{
$result
[
$ii
]
=
$tokens
[
$ii
];
--
$ii
;
}
return
array_reverse
(
$result
);
}
public
function
getNonsemanticTokensAfter
()
{
$tokens
=
$this
->
tree
->
getRawTokenStream
();
$result
=
array
();
$ii
=
$this
->
id
+
1
;
while
(
$ii
<
count
(
$tokens
)
&&
!
$tokens
[
$ii
]->
isSemantic
())
{
$result
[
$ii
]
=
$tokens
[
$ii
];
++
$ii
;
}
return
$result
;
}
}
Event Timeline
Log In to Comment