From eaba2393677024832bec8ac89a5012c114604562 Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Wed, 7 Jul 2021 13:31:05 +0300 Subject: [PATCH] Note the limitation of current constraint resolver --- docs/_posts/2021-06-30-luau-recap-june-2021.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/_posts/2021-06-30-luau-recap-june-2021.md b/docs/_posts/2021-06-30-luau-recap-june-2021.md index de2e4a18..51dcb20a 100644 --- a/docs/_posts/2021-06-30-luau-recap-june-2021.md +++ b/docs/_posts/2021-06-30-luau-recap-june-2021.md @@ -45,6 +45,9 @@ function say_hello(name: string?, surname: string?) end ``` +Please note that constraints are currently placed only on local and global variables. +One of our goals is to include support for table members in the future. + ## Typechecking improvements We have improved the way we handled module `require` calls. Previously, we had a simple pattern match on the `local m = require(...)` statement, but now we have replaced it with a general handling of the function call in any context.