DawDavis

Results 8 comments of DawDavis

@moisespsena , Your usecase mixes builtin and compiled functions in a way that Tengo does not support. You can't Call into a compiled function directly. Look at #275 This is...

Thanks for getting to this so quickly, both of you. I hemmed and hawed over what to do in regard to the a keyword (Obviously it would be "this" I...

@geseq Yeah, I considered omitting them from the specification, but because Tengo has no defined classes nor definitions, it made more sense to me to not artificially limit which collection...

## Syntax I've been thinking about the method declaration syntax, and these are a few thoughts I've had on the subject. This is all just speculative brainstorming. I based my...

@d5 , I have had half a mind to create a module that includes ctx stuff for Tengo, due to the project I upstreamed this PR from. Is that a...

Looked at the underlying error - I think there just needs to be a change to [parser.go:356](https://github.com/saferwall/elf/blob/main/parser.go#L356). ```go shstrtab, err := sections[p.F.Header64.Shstrndx].Data() ``` to ```go shstrtab, err := sections[p.F.Header32.Shstrndx].Data() ```

@LordNoteworthy Checked and it looks good to me - should probably have a test case against the 32-bit case, as this should have been detected a while ago. Anyways, I...

Yeah, after reading the documentation around the RP2040, it looks like just doing the init any time a configuration is set is A-okay. The call is idempotent afaik. I also...