1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:35:06 +00:00
serenity/Userland/Libraries/LibJS
Idan Horowitz b1e5330e64 LibJS: Stop early-returning on missing searchString in String.startsWith
A missing searchString is allowed by the specification and is treated
as js_undefined. ("undefined test".startsWith() => true)
2021-04-20 14:38:54 +02:00
..
Heap LibJS: Use 'if constexpr' instead of '#if HEAP_DEBUG' 2021-04-18 18:14:44 +02:00
Runtime LibJS: Stop early-returning on missing searchString in String.startsWith 2021-04-20 14:38:54 +02:00
Tests LibJS: Fix crash in Object.{freeze,seal}() with indexed properties 2021-04-20 09:38:22 +02:00
AST.cpp LibJS: Use references in CallExpression::compute_this_and_callee() 2021-04-15 09:45:20 +02:00
AST.h Only apply auto-naming of function expressions based on syntax 2021-03-22 12:44:07 +01:00
CMakeLists.txt LibJS: Add initial support for Promises 2021-04-02 10:47:40 +02:00
Console.cpp LibJS: Implement console.assert() 2021-04-18 18:28:17 +02:00
Console.h LibJS: Implement console.assert() 2021-04-18 18:28:17 +02:00
Forward.h LibJS: Add initial support for Promises 2021-04-02 10:47:40 +02:00
Interpreter.cpp LibJS: Replace two more uses of unwind(ScopeType::None) with stop_unwind() 2021-04-13 15:40:52 +02:00
Interpreter.h LibJS: Always inline some tiny Interpreter getters 2021-03-21 21:39:39 +01:00
Lexer.cpp LibJS: Use 'if constexpr' / dbgln_if() instead of '#if LEXER_DEBUG' 2021-04-18 18:14:50 +02:00
Lexer.h LibJS: Keep track of file names, lines and columns inside the AST 2021-03-01 11:14:36 +01:00
MarkupGenerator.cpp LibJS: Include the class name of objects in MarkupGenerator output 2021-04-20 12:05:56 +02:00
MarkupGenerator.h LibJS: Include the class name of objects in MarkupGenerator output 2021-04-20 12:05:56 +02:00
Parser.cpp LibJS: Memoize failed calls of try_parse_arrow_function_expression() 2021-04-12 11:24:09 +02:00
Parser.h LibJS: Memoize failed calls of try_parse_arrow_function_expression() 2021-04-12 11:24:09 +02:00
SourceRange.h LibJS: Keep track of file names, lines and columns inside the AST 2021-03-01 11:14:36 +01:00
SyntaxHighlighter.cpp LibSyntax: Make rehighlight() take Gfx::Palette as by const-reference 2021-02-11 23:52:39 +01:00
SyntaxHighlighter.h LibSyntax: Make rehighlight() take Gfx::Palette as by const-reference 2021-02-11 23:52:39 +01:00
Token.cpp Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
Token.h LibJS: Keep track of file names, lines and columns inside the AST 2021-03-01 11:14:36 +01:00