[Bro-Commits] [git/bro] topic/robin/dynamic-cast: Add experimental "is" and "as" operators. (dabe125)

        function check(a: any)
            {
            local s: string = "default";
    
            if ( a is string )
                s = (a as string);

Are the parenthesis around the expression required? Intuitively,
operator "as" should have higher precedence.

    Matthias