Lines Matching refs:import
34 operator. It will be possible to "import" symbols from one namespace
123 It is possible to import symbols from another namespace into the
124 current one with the "import" statement:
126 import * from HTML; // all symbols
128 import Form from HTML; // single symbols
130 import Form,Table from HTML; // multiple symbols
136 Optionally, the symbol type may be explicitly given to import (as
139 import class Form from HTML;
141 And finally, you may import all symbols of a given type:
143 import constant * from HTML:Table;
146 "import".