Skip to content

Commit 3852e40

Browse files
committed
upgrade to Luau 0.706
1 parent 0c72a18 commit 3852e40

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

build.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,7 @@ const LUAU_Analysis_SOURCE_FILES = [_][]const u8{
771771
"Analysis/src/StructuralTypeEquality.cpp",
772772
"Analysis/src/Substitution.cpp",
773773
"Analysis/src/Subtyping.cpp",
774+
"Analysis/src/SubtypingUnifier.cpp",
774775
"Analysis/src/Symbol.cpp",
775776
"Analysis/src/TableLiteralInference.cpp",
776777
"Analysis/src/ToDot.cpp",

build.zig.zon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.{
22
.name = .luau,
33
.fingerprint = 0x5e07e249a70630b8,
4-
.version = "0.0.0+705",
4+
.version = "0.0.0+706",
55
.dependencies = .{
66
.luau = .{
7-
.url = "git+https://github.com/luau-lang/luau#0.705",
8-
.hash = "N-V-__8AAKzorgD4dufP9bnGV5ElndKOZ9PdAsVVc4EOrCJE",
7+
.url = "git+https://github.com/luau-lang/luau#0.706",
8+
.hash = "N-V-__8AAEf9rwBtLr8RmAD4FHBSy_pYSXgKypXXoHS66aTi",
99
},
1010
},
1111
.paths = .{

src/Ast/Lexer.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub const Lexeme = struct {
1111
pub const Type = enum(c_int) {
1212
Eof = 0,
1313

14+
// 1..255 means actual character values
1415
Char_END = 256,
1516

1617
Equal,

0 commit comments

Comments
 (0)