mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:37:45 +00:00
Shell: Fix (and paper over) various const-correctness issues
This commit is contained in:
parent
39a1702c99
commit
68b5df6bf1
9 changed files with 81 additions and 81 deletions
|
@ -117,8 +117,8 @@ private:
|
|||
StringView m_source;
|
||||
size_t m_output_cursor { 0 };
|
||||
ssize_t m_cursor { -1 };
|
||||
RefPtr<AST::Node> m_root_node;
|
||||
AST::Node* m_hit_node { nullptr };
|
||||
RefPtr<AST::Node const> m_root_node;
|
||||
AST::Node const* m_hit_node { nullptr };
|
||||
|
||||
const AST::Node* m_parent_node { nullptr };
|
||||
const AST::Node* m_last_visited_node { nullptr };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue