mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
First draft Feb 2021 Recap
This commit is contained in:
parent
3f8b8890b7
commit
c5fb4c2260
6 changed files with 74 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
|||
# Emacs
|
||||
*~
|
||||
|
||||
# MacOS
|
||||
.DS_Store
|
||||
|
|
|
@ -2,3 +2,74 @@
|
|||
layout: single
|
||||
title: "Luau Recap: February 2021"
|
||||
---
|
||||
|
||||
Luau is our new language that you can read more about at [https://roblox.github.io/luau](https://roblox.github.io/luau). It's been a busy few months in Luau!
|
||||
|
||||
[Cross-posted to the [Roblox Developer Forum](https://devforum.roblox.com/t/luau-recap-february-2021/).]
|
||||
|
||||
## Infallible parser
|
||||
|
||||
Traditional compilers have focused on tasks that can be performed on complete programs, such as type-checking, static analysis and code generation. This is all good, but most programs under development are incomplete! They may have holes, statements that will be filled in later, and lines that are in the middle of being edited. If we'd like to provide support for developers while they are writing code, we need to provide tools for incomplete programs as well as complete ones.
|
||||
|
||||
The first step in this is an *infallible* parser, that always returns an Abstract Syntax Tree, no matter what input it is given. If the program is syntactically incorrect, there will also be some syntax errors, but the parser keeps going and tries to recover from those errors, rather than just giving up.
|
||||
|
||||
The Luau parser now recovers from errors, which means, for example, we can give hints about programs in an IDE.
|
||||
|
||||

|
||||
|
||||
## Type definition files
|
||||
|
||||
Developers familiar with TypeScript will know all about `.d.ts` declaration files, and now they're in Luau too! A Luau *type definition file* contains just the types for a library, not its implementation. They're very useful when you're interfacing to an existing third-party library, and want to use it in a type-safe way. Now you can declare the types it exports, without having to look at its source code.
|
||||
|
||||
## Type assertions
|
||||
|
||||
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
|
||||
|
||||
We've made quite a few performance improvements to the Luau bytecode interpreter.
|
||||
|
||||
Function calls are now faster in the common case of one- or two-argument functions.
|
||||
|
||||
Some built-in operations such as equality checking and modulo arithmetic are now faster.
|
||||
|
||||
## Coming soon...
|
||||
|
||||
* _Generic function types_ will soon be allowed!
|
||||
```
|
||||
function id<a>(x: a): a
|
||||
return x
|
||||
end
|
||||
```
|
||||
|
||||
* _Typed variadics_ will soon allow types to be given to functions with varying numbers of arguments!
|
||||
```
|
||||
function sum(...: number): number
|
||||
local result = 0
|
||||
for i,v in ipairs(arg) do
|
||||
result = result + v
|
||||
end
|
||||
return result
|
||||
end
|
||||
```
|
||||
|
||||
* _Class declarations in type definition files_ will allow object-oriented APIs to be declared!
|
||||
```
|
||||
declare class Cat : Animal
|
||||
function meow() -> string
|
||||
end
|
||||
```
|
||||
|
||||
And there will be more!
|
||||
|
|
BIN
docs/assets/images/type-annotation-needed.png
Normal file
BIN
docs/assets/images/type-annotation-needed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 58 KiB |
BIN
docs/assets/images/type-annotation-provided.png
Normal file
BIN
docs/assets/images/type-annotation-provided.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
BIN
docs/assets/images/type-error-after-syntax-error.png
Normal file
BIN
docs/assets/images/type-error-after-syntax-error.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
BIN
docs/assets/images/type-refinement-in-action.png
Normal file
BIN
docs/assets/images/type-refinement-in-action.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
Loading…
Add table
Reference in a new issue