gimme all of it

This commit is contained in:
Chris Wanstrath 2025-11-05 15:17:54 -08:00
parent e7201e691c
commit f4e24f427f

View File

@ -72,7 +72,6 @@ export function toValue(v: any, vm?: VM): Value /* throws */ {
const stackLines = stack.split('\n')
.slice(1)
.filter(line => !line.includes('toValue'))
.slice(0, 3)
.map(line => ' ' + line.trim())
.join('\n')
throw new Error(
@ -201,7 +200,6 @@ export function fromValue(v: Value, vm?: VM): any {
const stackLines = stack.split('\n')
.slice(1)
.filter(line => !line.includes('fromValue'))
.slice(0, 3)
.map(line => ' ' + line.trim())
.join('\n')
throw new Error(