Lines Matching refs:namespace
31 namespace, defaulting to the current global one. The current name
33 spaces than the current one may be referenced using a new namespace
34 operator. It will be possible to "import" symbols from one namespace
44 The namespace operator ":" is used to refer to symbols in other
54 To refer to symbols in the global namespace, symbols are prefixed with
55 only the namespace operator:
67 A namespace may have a name containing a ":", it is always the last
68 ":" character in the symbol qualifier that is the actual namespace
79 the one after "Space" that is the namespace operator.)
85 Individual files may define a namespace that will apply to the entire
86 file. If no "namespace" operator occurs in the file, it will be in
87 the global namespace:
89 1 namespace HTML;
100 1 namespace HTML:Form;
110 Code executed within the "HTML" namespace may refer to the Form class
112 refer to it as "HTML:Form". The "namespace" statement must occur
116 # Should it be possible to "add" symbols to a namespace by including a
117 # second file with the same namespace statement?
123 It is possible to import symbols from another namespace into the
145 The namespace with its symbols must already be defined before using