Pinq\Tests\Integration\Parsing\FunctionTypesTest::testClosure PHP 메소드

testClosure() 공개 메소드

public testClosure ( )
    public function testClosure()
    {
        $this->assertParsedAs(function () {
            return 1.1;
        }, [O\Expression::returnExpression(O\Expression::value(1.1))]);
    }