Embedded programming language for Zig
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix `throw` function signature

IamPyu 10c6f7d9 d9fe1c23

+1 -1
+1 -1
src/corelib.zig
··· 487 487 return Value.initNil(scope); 488 488 } 489 489 490 - pub fn throw(scope: *Scope, args: []*const Value) RuntimeError!*Value { 490 + pub fn throw(scope: *Scope, args: []const *Value) RuntimeError!*Value { 491 491 _ = scope; 492 492 _ = args; 493 493 return RuntimeError.Exception;