1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
=== tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity5.ts ===
model.rotate(0, rotateY * Math.PI / 180, rotateZ * Math.PI / 180);
>model.rotate(0, rotateY * Math.PI / 180, rotateZ * Math.PI / 180) : any
>model.rotate : any
>model : any
>rotate : any
>0 : 0
>rotateY * Math.PI / 180 : number
>rotateY * Math.PI : number
>rotateY : any
>Math.PI : number
>Math : Math
>PI : number
>180 : 180
>rotateZ * Math.PI / 180 : number
>rotateZ * Math.PI : number
>rotateZ : any
>Math.PI : number
>Math : Math
>PI : number
>180 : 180
|