mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
Merge branch 'master' into merge
This commit is contained in:
commit
a76a92f4a3
4 changed files with 62 additions and 1 deletions
|
@ -21,6 +21,8 @@
|
|||
#include <fcntl.h>
|
||||
#endif
|
||||
|
||||
#include <locale.h>
|
||||
|
||||
LUAU_FASTFLAG(DebugLuauTimeTracing)
|
||||
|
||||
enum class CliMode
|
||||
|
@ -435,6 +437,9 @@ static void runReplImpl(lua_State* L)
|
|||
{
|
||||
ic_set_default_completer(completeRepl, L);
|
||||
|
||||
// Reset the locale to C
|
||||
setlocale(LC_ALL, "C");
|
||||
|
||||
// Make brace matching easier to see
|
||||
ic_style_def("ic-bracematch", "teal");
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ logo: /assets/images/luau-88.png
|
|||
plugins: ["jekyll-include-cache", "jekyll-feed"]
|
||||
include: ["_pages"]
|
||||
atom_feed:
|
||||
path: feed.xml
|
||||
path: "/feed.xml"
|
||||
|
||||
defaults:
|
||||
# _docs
|
||||
|
|
51
docs/_posts/2022-05-02-luau-recap-april-2022.md
Normal file
51
docs/_posts/2022-05-02-luau-recap-april-2022.md
Normal file
|
@ -0,0 +1,51 @@
|
|||
---
|
||||
layout: single
|
||||
title: "Luau Recap: April 2022"
|
||||
---
|
||||
|
||||
Luau is our new language that you can read more about at [https://luau-lang.org](https://luau-lang.org).
|
||||
|
||||
[Cross-posted to the [Roblox Developer Forum](https://devforum.roblox.com/t/luau-recap-april-2022/).]
|
||||
|
||||
It's been a bit of a quiet month. We mostly have small optimizations and bugfixes for you.
|
||||
|
||||
It is now allowed to define functions on sealed tables that have string indexers. These functions will be typechecked against the indexer type. For example, the following is now valid:
|
||||
|
||||
```lua
|
||||
local a : {[string]: () -> number} = {}
|
||||
|
||||
function a.y() return 4 end -- OK
|
||||
```
|
||||
|
||||
Autocomplete will now provide string literal suggestions for singleton types. eg
|
||||
|
||||
```lua
|
||||
local function f(x: "a" | "b") end
|
||||
f("_") -- suggest "a" and "b"
|
||||
```
|
||||
|
||||
Improve error recovery in the case where we encounter a type pack variable in a place where one is not allowed. eg `type Foo<A...> = { value: A... }`
|
||||
|
||||
When code does not pass enough arguments to a variadic function, the error feedback is now better.
|
||||
|
||||
For example, the following script now produces a much nicer error message:
|
||||
```lua
|
||||
type A = { [number]: number }
|
||||
type B = { [number]: string }
|
||||
|
||||
local a: A = { 1, 2, 3 }
|
||||
|
||||
-- ERROR: Type 'A' could not be converted into 'B'
|
||||
-- caused by:
|
||||
-- Property '[indexer value]' is not compatible. Type 'number' could not be converted into 'string'
|
||||
local b: B = a
|
||||
```
|
||||
|
||||
If the following code were to error because `Hello` was undefined, we would erroneously include the comment in the span of the error. This is now fixed.
|
||||
```lua
|
||||
type Foo = Hello -- some comment over here
|
||||
```
|
||||
|
||||
Fix a crash that could occur when strict scripts have cyclic require() dependencies.
|
||||
|
||||
Add an option to autocomplete to cause it to abort processing after a certain amount of time has elapsed.
|
|
@ -41,6 +41,11 @@ TEST_CASE_FIXTURE(LimitFixture, "bail_early_on_typescript_port_of_Result_type" *
|
|||
{
|
||||
constexpr const char* src = R"LUA(
|
||||
--!strict
|
||||
|
||||
-- Big thanks to Dionysusnu by letting us use this code as part of our test suite!
|
||||
-- https://github.com/Dionysusnu/rbxts-rust-classes
|
||||
-- Licensed under the MPL 2.0: https://raw.githubusercontent.com/Dionysusnu/rbxts-rust-classes/master/LICENSE
|
||||
|
||||
local TS = _G[script]
|
||||
local lazyGet = TS.import(script, script.Parent.Parent, "util", "lazyLoad").lazyGet
|
||||
local unit = TS.import(script, script.Parent.Parent, "util", "Unit").unit
|
||||
|
|
Loading…
Add table
Reference in a new issue