aquanight

Results 6 comments of aquanight

You seem to have blanked out the port number. While not too important, can you confirm that the port number is not less than 1024? Such port numbers can only...

One possible answer to this: revisit the notion of "lexical fields" (at the very least still outside of methods) and through this, not needing to provide _any_ parameters to ADJUST:...

The `Real` vs `Complex` issue looks like it would be one solved by leveraging `CONSTRUCT` rather than `ADJUST`. (Fortunately, CONSTRUCT is still relevant to constructor params!) `CONSTRUCT` looks to me...

Might I toss in a 3rd possible way to look at field declarations? ### 3. `our`-like ``` package Red { { our $x; sub one { return $x; } }...

I will say that nonlexical fields are likely incompatible with being able to split class definitions, or really any other situation in which variables can be "pushed" into scope from...

Regarding the issue of cross-instance field access... at least in the case of comparison there _is_ a possible alternative approach: ``` class Point { ... method $equals ($other_x, $other_y) {...