1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 12:41:01 +00:00
serenity/DevTools/Inspector
Matthew Olsson e8e728454c AK: JsonParser improvements
- Parsing invalid JSON no longer asserts
    Instead of asserting when coming across malformed JSON,
    JsonParser::parse now returns an Optional<JsonValue>.
- Disallow trailing commas in JSON objects and arrays
- No longer parse 'undefined', as that is a purely JS thing
- No longer allow non-whitespace after anything consumed by the initial
  parse() call. Examples of things that were valid and no longer are:
    - undefineddfz
    - {"foo": 1}abcd
    - [1,2,3]4
- JsonObject.for_each_member now iterates in original insertion order
2020-06-13 12:43:22 +02:00
..
CMakeLists.txt Build: Switch to CMake :^) 2020-05-14 20:15:18 +02:00
main.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
RemoteObject.cpp Meta: Add license header to source files 2020-01-18 09:45:54 +01:00
RemoteObject.h AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 2020-03-08 13:06:51 +01:00
RemoteObjectGraphModel.cpp Inspector: Store remote object addresses as uintptr_t instead of String 2020-03-05 16:31:03 +01:00
RemoteObjectGraphModel.h LibGUI: Move Icon and FontDatabase into the GUI namespace 2020-03-07 01:33:53 +01:00
RemoteObjectPropertyModel.cpp AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 2020-03-08 13:06:51 +01:00
RemoteObjectPropertyModel.h Inspector: Make properties editable :^) 2020-03-05 15:50:22 +01:00
RemoteProcess.cpp AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
RemoteProcess.h AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 2020-03-08 13:06:51 +01:00