Flash / Flex / ActionScript/Statement/with
Версия от 09:19, 26 мая 2010; (обсуждение)
Expanding the Scope Chain via the with Statement
with (object) {
substatements
}
with (Math) {
trace(PI);
}
with (object) {
substatements
}
with (Math) {
trace(PI);
}