1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:47:46 +00:00

LibJS: Remove unused "lexical argument index" metadata from Identifier

This shrinks Identifier by 16 bytes. :^)
This commit is contained in:
Andreas Kling 2022-11-21 17:52:29 +01:00
parent b0b022507b
commit 76f438eb3e
2 changed files with 0 additions and 17 deletions

View file

@ -1212,7 +1212,6 @@ public:
}
FlyString const& string() const { return m_string; }
void set_lexically_bound_function_argument_index(size_t index) { m_lexically_bound_function_argument = index; }
virtual Completion execute(Interpreter&) const override;
virtual void dump(int indent) const override;
@ -1223,7 +1222,6 @@ private:
virtual bool is_identifier() const override { return true; }
FlyString m_string;
Optional<size_t> m_lexically_bound_function_argument;
mutable Optional<EnvironmentCoordinate> m_cached_environment_coordinate;
};