Flash / Flex / ActionScript/Statement/with

Материал из Web эксперт
Перейти к: навигация, поиск

Expanding the Scope Chain via the with Statement

   <source lang="java">

with (object) {

 substatements

} with (Math) {

 trace(PI);    

}

       </source>