File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ namespace ts {
176
176
/**
177
177
* Declares a Symbol for the node and adds it to symbols. Reports errors for conflicting identifier names.
178
178
* @param symbolTable - The symbol table which node will be added to.
179
- * @param parent - If node is in a class, parent denotes the parent declaration.
179
+ * @param parent - node's parent declaration.
180
180
* @param node - The declaration to be added to the symbol table
181
181
* @param includes - The SymbolFlags that node has in addition to its declaration type (eg: export, ambient, etc.)
182
182
* @param excludes - The flags which node cannot be declared alongside in a symbol table. Used to report forbidden declarations.
@@ -211,11 +211,11 @@ namespace ts {
211
211
symbol = hasProperty ( symbolTable , name )
212
212
? symbolTable [ name ]
213
213
: ( symbolTable [ name ] = createSymbol ( SymbolFlags . None , name ) ) ;
214
-
214
+
215
215
if ( name && ( includes & SymbolFlags . Classifiable ) ) {
216
- classifiableNames [ name ] = name ;
216
+ classifiableNames [ name ] = name ;
217
217
}
218
-
218
+
219
219
if ( symbol . flags & excludes ) {
220
220
if ( node . name ) {
221
221
node . name . parent = node ;
You can’t perform that action at this time.
0 commit comments