OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pointjson
(Results
1 - 1
of
1
) sorted by null
/external/v8/test/mjsunit/
json.js
139
var
pointJson
= '{"x": 1, "y": 2}';
140
assertEquals({'x': 1, 'y': 2}, JSON.parse(
pointJson
));
141
assertEquals({'x': 1}, JSON.parse(
pointJson
, GetFilter('y')));
142
assertEquals({'y': 2}, JSON.parse(
pointJson
, GetFilter('x')));
Completed in 133 milliseconds