Files
ladybird/Libraries/LibJS
Andreas Kling 07679e347c LibJS: Parse FunctionExpressions
FunctionExpression is mostly like FunctionDeclaration, except the name
is optional. Share the parsing logic in parse_function_node<NodeType>.

This allows us to do nice things like:

    document.addEventListener("DOMContentLoaded", function() {
        alert("Hello friends!");
    });
2020-03-19 11:54:11 +01:00
..
2020-03-18 20:21:06 +01:00
2020-03-19 11:12:08 +01:00
2020-03-19 11:54:11 +01:00
2020-03-19 11:54:11 +01:00
2020-03-19 11:54:11 +01:00