Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94166578
PhutilJSONFragmentLexer.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, Dec 4, 10:24
Size
646 B
Mime Type
text/x-php
Expires
Fri, Dec 6, 10:24 (2 d)
Engine
blob
Format
Raw Data
Handle
22749522
Attached To
rPHU libphutil
PhutilJSONFragmentLexer.php
View Options
<?php
/**
* Syntax highlighting lexer for JSON fragments.
*/
final
class
PhutilJSONFragmentLexer
extends
PhutilLexer
{
protected
function
getRawRules
()
{
return
array
(
'start'
=>
array
(
array
(
'"'
,
's'
,
'double-quoted-string'
),
array
(
'
\s
+'
,
null
),
array
(
'[
\\
[
\\
]{},:]'
,
'o'
),
array
(
'(?:true|false|null)'
,
'k'
),
array
(
'-?
\d
+(
\.\d
+([eE][-+]?
\d
+)?)?'
,
'mf'
),
array
(
'.'
,
null
),
),
'double-quoted-string'
=>
array
(
array
(
'[^"
\\\\
]+'
,
's'
),
array
(
'"'
,
's'
,
'!pop'
),
array
(
'
\\\\
u[0-9a-fA-F]{4}'
,
'k'
),
array
(
'
\\\\
.'
,
'k'
),
),
);
}
}
Event Timeline
Log In to Comment