Darryl Abbate

Results 18 comments of Darryl Abbate

> Is there any alternative on MacOS whilst we wait for this fix? Thanks I'm under the impression Xcode's Instruments is supposed to fill Valgrind's shoes, though I haven't tried...

I can confirm that simply hardcoding the second argument to `defaultNetworkInterface()` as `1` creates the p5 cluster successfully ```patch diff --git a/pkg/cfn/builder/network_interfaces.go b/pkg/cfn/builder/network_interfaces.go index 103811ce5..2da89dd23 100644 --- a/pkg/cfn/builder/network_interfaces.go +++ b/pkg/cfn/builder/network_interfaces.go...

Type dispatch: - If `y` in the expression `x in y` can be coerced to string, `x in y` should essentially be the inverse of pattern matching (i.e. `y ~...

> Precedence level should be lower than `~` and `..` but higher than `&&` Not currently possible to be lower than `..` but also higher than `&&`. Logical operators should...

Didn't realize before, but Python's multiline string syntax is basically worthless. Leading whitespace isn't trimmed. Current idea would be for the lexer to: 1. Eat the `'''` token 2. Count...

This work should also include the internal "expression stack" that's needed for constant folding/propagation. I believe this can also be used to create a set of specialized opcodes for variable...

A note on Lua's syntax for comparison ([ref](https://www.lua.org/manual/5.4/manual.html#3.4.10)): > A call `v:name(args)` is syntactic sugar for `v.name(v,args)` This is in slight contrast to the idea posted above, where `v` would...

Another thought: Calling methods on literals should also be supported. Ex: ```riff 'string'.num(36) ```

> an implicit `self` or `this` inside functions This would require: - Dedicated opcodes for `self` lookups, e.g. `OP_SELFIDX[AV]` - Some mechanism to pass `self` when invoking a user function...

> Also, audit the behavior of `$abc`. Currently, `abc` would be treated as an expression (variable). To dereference the field table with a named group, you'd need to use a...