mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Rename empty() to is_empty()
This commit is contained in:
parent
886571e0fc
commit
5b937d493f
289 changed files with 898 additions and 898 deletions
|
|
@ -230,7 +230,7 @@ private:
|
|||
_FORCE_INLINE_ bool _is_at_end() { return position >= length; }
|
||||
_FORCE_INLINE_ char32_t _peek(int p_offset = 0) { return position + p_offset >= 0 && position + p_offset < length ? _current[p_offset] : '\0'; }
|
||||
int indent_level() const { return indent_stack.size(); }
|
||||
bool has_error() const { return !error_stack.empty(); }
|
||||
bool has_error() const { return !error_stack.is_empty(); }
|
||||
Token pop_error();
|
||||
char32_t _advance();
|
||||
void _skip_whitespace();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue