Search code examples
hhvmhacklang

Shapes in hacklang


I have started learning hacklang today and now I am a bit stuck on shapes: http://docs.hhvm.com/manual/en/hack.shapes.php

I understand the concept of shapes and it seems really useful for me, but I can't understand why for example this code does not throw any error:

<?hh

type Point2D = shape('x' => int, 'y' => int);

function dotProduct(Point2D $a, Point2D $b): int {
    return $a['x'] * $b['x'] + $a['y'] * $b['y'];
}

function main_sse(): void {
    echo dotProduct(shape('x' => 3, 'y' => 'this should cause an fatal error?'), shape('x' => 4, 'y' => 4));
}

main_sse();

The 'y' key is defined as integer, but when I pass a string, no error is shown. Thanks for your help :)


Solution

  • Actually executing Hack code doesn't necessarily typecheck everything. You need to actually run a separate tool to enforce the type system, as described in the docs article linked here. When you do that, you'll get an error that looks something like this, depending on the exact version of HHVM you have:

    File "shapes.php", line 10, characters 19-23:
    Invalid argument (Typing[4110])
    File "shapes.php", line 3, characters 41-43:
    This is an int
    File "shapes.php", line 10, characters 42-76:
    It is incompatible with a string
    

    Modern versions of HHVM will also yell at you if you aren't running the typechecker; I suspect you're running an older version, before we realized this was a point of confusion -- sorry!

    What actually happens when you run type-incorrect code is undefined behavior. The answer by Ed Cottrell is correct for the current version of HHVM -- we do the same thing PHP does to coerce types -- but keep in mind it's undefined behavior and may change in future versions without notice.