diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-07 11:09:28 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-07 11:09:34 +0100 |
commit | 7223c5b54a7958fe8f8176bafe5ea415f0c514a6 (patch) | |
tree | 356bb60754ce9a90d84805581489a896b7e8f939 /modules/gdscript/README.md | |
parent | 08eaeff6402b92d3df4268321ee1ceea8f2bfd5a (diff) | |
download | redot-engine-7223c5b54a7958fe8f8176bafe5ea415f0c514a6.tar.gz |
Fix various typos with codespell
Using 2.2.7.dev115+g0eb441d6.
Had to add `cancelled` to the ignore list, as it's a Wayland signal which
we're handling in our code, so we don't want codespell to fix that "typo".
Also includes the typo fix from #87927.
Co-authored-by: Divyanshu Shekhar <61140213+divshekhar@users.noreply.github.com>
Diffstat (limited to 'modules/gdscript/README.md')
-rw-r--r-- | modules/gdscript/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/README.md b/modules/gdscript/README.md index 30685e672c..865475d37d 100644 --- a/modules/gdscript/README.md +++ b/modules/gdscript/README.md @@ -69,7 +69,7 @@ The remaining steps of resolution, including member variable initialization code In fully untyped code, very little static analysis is possible. For example, the analyzer cannot know whether `my_var.some_member` exists when it does not know the type of `my_var`. Therefore, it cannot emit a warning or error because `some_member` _could_ exist - or it could not. The analyzer must trust the programmer. If an error does occur, it will be at runtime. However, GDScript is gradually typed, so all of these analyses must work when parts of the code are typed and others untyped. Static analysis in a gradually typed language is a best-effort situation: suppose there is a typed variable `var x : int`, and an untyped `var y = "some string"`. We can obviously tell this isn't going to work, but the analyzer will accept the assignment `x = y` without warnings or errors: it only knows that `y` is untyped and can therefore be anything, including the `int` that `x` expects. It must once again trust the programmer to have written code that works. In this instance, the code will error at runtime. -In both these cases, the analyzer handles the uncertainty of untyped code by calling `mark_node_unsafe()` on the respective AST node. This means it didn't have enough information to know whether the code was fully safe or necessarily wrong. Lines with unsafe AST nodes are represented by grey line numbers in the GDScript editor. Green line numbers indicate a line of code without any unsafe nodes. +In both these cases, the analyzer handles the uncertainty of untyped code by calling `mark_node_unsafe()` on the respective AST node. This means it didn't have enough information to know whether the code was fully safe or necessarily wrong. Lines with unsafe AST nodes are represented by gray line numbers in the GDScript editor. Green line numbers indicate a line of code without any unsafe nodes. This analysis step is also where dependencies are introduced and that information stored for use later. If class `A` extends class `B` or contains a member with type `B` from some other script file, then the analyzer will attempt to load that second script. If `B` contains references to `A`, then a _cyclic_ dependency is introduced. This is OK in many cases, but impossible to resolve in others. |