mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fixed image links
This commit is contained in:
parent
c5fb4c2260
commit
b64d683f8d
1 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ The first step in this is an *infallible* parser, that always returns an Abstrac
|
|||
|
||||
The Luau parser now recovers from errors, which means, for example, we can give hints about programs in an IDE.
|
||||
|
||||

|
||||

|
||||
|
||||
## Type definition files
|
||||
|
||||
|
@ -25,17 +25,17 @@ Developers familiar with TypeScript will know all about `.d.ts` declaration file
|
|||
|
||||
The Luau type checker can't know everything about your code, and sometimes it will produce type errors even when you know the code is correct. For example, sometimes the type checker can't work out the intended types, and gives a message such as "Unknown type used... consider adding a type annotation".
|
||||
|
||||

|
||||

|
||||
|
||||
Previously the only way to add an annotation was to put it on the *declaration* of the variable, but now you can put it on the *use* too. A use of variable `x` at type `T` can be written `x :: T`. For example the type `any` can be used almost anywhere, so a common usage of type assertions is to switch off the type system by writing `x :: any`.
|
||||
|
||||

|
||||

|
||||
|
||||
## Improved type refinements
|
||||
|
||||
Type refinements are used when a check is made on the dynamic type of a variable. Luau knows the static type during type-checking, but the dynamic type might be a refinement of the static type (or it might not, that's why we're checking it). For example, if the static type of `x` is `any`, then we might check that it's a number before incrementing it.
|
||||
|
||||

|
||||

|
||||
|
||||
## Performance improvements
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue