summaryrefslogtreecommitdiff
path: root/AK/JsonParser.cpp
AgeCommit message (Expand)Author
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-12-29AK: Fix JSON parser crashing when encountering UTF-8Andreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-08-14JsonParser: "" is an empty string, not a null valueAndreas Kling
2019-08-07JsonParser: Scan ahead to find the first special char in quoted stringsAndreas Kling
2019-08-04JsonParser: Fold extract_while() into parse_number()Andreas Kling
2019-08-04JsonParser: Oops, fix build.Andreas Kling
2019-08-04JsonParser: Cache the last seen string starting with each possible charAndreas Kling
2019-08-04JsonParser: Some minor optimizationsAndreas Kling
2019-08-04JsonParser: Use Vector<char, 1024> instead of StringBuilder in parsingAndreas Kling
2019-08-04JsonParser: When encountering \uXXXX, just emit a "?" for now.Andreas Kling
2019-08-01JsonParser: Merge the parsing of '\n' and '\r' in quoted stringsAndreas Kling
2019-07-08AK: Add JsonObject::set(key, &&value) overload.Andreas Kling
2019-06-29Kernel: Change the format of /proc/all to JSON.Andreas Kling
2019-06-25JsonParser: Support basic escaped string characters.Andreas Kling
2019-06-24AK: Let's put the JSON parsing in a separate class.Andreas Kling