1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
|
//// [parserRealSource8.ts]
// Copyright (c) Microsoft. All rights reserved. Licensed under the Apache License, Version 2.0.
// See LICENSE.txt in the project root for complete license information.
///<reference path='typescript.ts' />
module TypeScript {
export class AssignScopeContext {
constructor (public scopeChain: ScopeChain,
public typeFlow: TypeFlow,
public modDeclChain: ModuleDeclaration[]) {
}
}
export function pushAssignScope(scope: SymbolScope,
context: AssignScopeContext,
type: Type,
classType: Type,
fnc: FuncDecl) {
var chain = new ScopeChain(null, context.scopeChain, scope);
chain.thisType = type;
chain.classType = classType;
chain.fnc = fnc;
context.scopeChain = chain;
}
export function popAssignScope(context: AssignScopeContext) {
context.scopeChain = context.scopeChain.previous;
}
export function instanceCompare(a: Symbol, b: Symbol) {
if (((a == null) || (!a.isInstanceProperty()))) {
return b;
}
else {
return a;
}
}
export function instanceFilterStop(s: Symbol) {
return s.isInstanceProperty();
}
export class ScopeSearchFilter {
constructor (public select: (a: Symbol, b: Symbol) =>Symbol,
public stop: (s: Symbol) =>boolean) { }
public result: Symbol = null;
public reset() {
this.result = null;
}
public update(b: Symbol): boolean {
this.result = this.select(this.result, b);
if (this.result) {
return this.stop(this.result);
}
else {
return false;
}
}
}
export var instanceFilter = new ScopeSearchFilter(instanceCompare, instanceFilterStop);
export function preAssignModuleScopes(ast: AST, context: AssignScopeContext) {
var moduleDecl = <ModuleDeclaration>ast;
var memberScope: SymbolTableScope = null;
var aggScope: SymbolAggregateScope = null;
if (moduleDecl.name && moduleDecl.mod) {
moduleDecl.name.sym = moduleDecl.mod.symbol;
}
var mod = moduleDecl.mod;
// We're likely here because of error recovery
if (!mod) {
return;
}
memberScope = new SymbolTableScope(mod.members, mod.ambientMembers, mod.enclosedTypes, mod.ambientEnclosedTypes, mod.symbol);
mod.memberScope = memberScope;
context.modDeclChain.push(moduleDecl);
context.typeFlow.checker.currentModDecl = moduleDecl;
aggScope = new SymbolAggregateScope(mod.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, null, null, null);
mod.containedScope = aggScope;
if (mod.symbol) {
context.typeFlow.addLocalsFromScope(mod.containedScope, mod.symbol, moduleDecl.vars, mod.members.privateMembers, true);
}
}
export function preAssignClassScopes(ast: AST, context: AssignScopeContext) {
var classDecl = <InterfaceDeclaration>ast;
var memberScope: SymbolTableScope = null;
var aggScope: SymbolAggregateScope = null;
if (classDecl.name && classDecl.type) {
classDecl.name.sym = classDecl.type.symbol;
}
var classType = ast.type;
if (classType) {
var classSym = classType.symbol;
memberScope = <SymbolTableScope>context.typeFlow.checker.scopeOf(classType);
aggScope = new SymbolAggregateScope(classType.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
classType.containedScope = aggScope;
classType.memberScope = memberScope;
var instanceType = classType.instanceType;
memberScope = <SymbolTableScope>context.typeFlow.checker.scopeOf(instanceType);
instanceType.memberScope = memberScope;
aggScope = new SymbolAggregateScope(instanceType.symbol);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, instanceType, classType, null);
instanceType.containedScope = aggScope;
}
else {
ast.type = context.typeFlow.anyType;
}
}
export function preAssignInterfaceScopes(ast: AST, context: AssignScopeContext) {
var interfaceDecl = <InterfaceDeclaration>ast;
var memberScope: SymbolTableScope = null;
var aggScope: SymbolAggregateScope = null;
if (interfaceDecl.name && interfaceDecl.type) {
interfaceDecl.name.sym = interfaceDecl.type.symbol;
}
var interfaceType = ast.type;
memberScope = <SymbolTableScope>context.typeFlow.checker.scopeOf(interfaceType);
interfaceType.memberScope = memberScope;
aggScope = new SymbolAggregateScope(interfaceType.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, null, null, null);
interfaceType.containedScope = aggScope;
}
export function preAssignWithScopes(ast: AST, context: AssignScopeContext) {
var withStmt = <WithStatement>ast;
var withType = withStmt.type;
var members = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable()));
var ambientMembers = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable()));
var withType = new Type();
var withSymbol = new WithSymbol(withStmt.minChar, context.typeFlow.checker.locationInfo.unitIndex, withType);
withType.members = members;
withType.ambientMembers = ambientMembers;
withType.symbol = withSymbol;
withType.setHasImplementation();
withStmt.type = withType;
var withScope = new TypeScript.SymbolScopeBuilder(withType.members, withType.ambientMembers, null, null, context.scopeChain.scope, withType.symbol);
pushAssignScope(withScope, context, null, null, null);
withType.containedScope = withScope;
}
export function preAssignFuncDeclScopes(ast: AST, context: AssignScopeContext) {
var funcDecl = <FuncDecl>ast;
var container: Symbol = null;
var localContainer: Symbol = null;
if (funcDecl.type) {
localContainer = ast.type.symbol;
}
var isStatic = hasFlag(funcDecl.fncFlags, FncFlags.Static);
var isInnerStatic = isStatic && context.scopeChain.fnc != null;
// for inner static functions, use the parent's member scope, so local vars cannot be captured
var parentScope = isInnerStatic ? context.scopeChain.fnc.type.memberScope : context.scopeChain.scope;
// if this is not a method, but enclosed by class, use constructor as
// the enclosing scope
// REVIEW: Some twisted logic here - this needs to be cleaned up once old classes are removed
// - if it's a new class, always use the contained scope, since we initialize the constructor scope below
if (context.scopeChain.thisType &&
(!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod))) {
var instType = context.scopeChain.thisType;
if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) {
if (!funcDecl.isMethod() || isStatic) {
parentScope = instType.constructorScope;
}
else {
// use constructor scope if a method as well
parentScope = instType.containedScope;
}
}
else {
if (context.scopeChain.previous.scope.container &&
context.scopeChain.previous.scope.container.declAST &&
context.scopeChain.previous.scope.container.declAST.nodeType == NodeType.FuncDecl &&
(<FuncDecl>context.scopeChain.previous.scope.container.declAST).isConstructor) {
// if the parent is the class constructor, use the constructor scope
parentScope = instType.constructorScope;
}
else if (isStatic && context.scopeChain.classType) {
parentScope = context.scopeChain.classType.containedScope;
}
else {
// else, use the contained scope
parentScope = instType.containedScope;
}
}
container = instType.symbol;
}
else if (funcDecl.isConstructor && context.scopeChain.thisType) {
// sets the container to the class type's symbol (which is shared by the instance type)
container = context.scopeChain.thisType.symbol;
}
if (funcDecl.type == null || hasFlag(funcDecl.type.symbol.flags, SymbolFlags.TypeSetDuringScopeAssignment)) {
if (context.scopeChain.fnc && context.scopeChain.fnc.type) {
container = context.scopeChain.fnc.type.symbol;
}
var funcScope = null;
var outerFnc: FuncDecl = context.scopeChain.fnc;
var nameText = funcDecl.name ? funcDecl.name.actualText : null;
var fgSym: TypeSymbol = null;
if (isStatic) {
// In the case of function-nested statics, no member list will have bee initialized for the function, so we need
// to copy it over. We don't set this by default because having a non-null member list will throw off assignment
// compatibility tests
if (outerFnc.type.members == null && container.getType().memberScope) {
outerFnc.type.members = (<SymbolScopeBuilder>(<TypeSymbol>container).type.memberScope).valueMembers;
}
funcScope = context.scopeChain.fnc.type.memberScope;
outerFnc.innerStaticFuncs[outerFnc.innerStaticFuncs.length] = funcDecl;
}
else {
if (!funcDecl.isConstructor &&
container &&
container.declAST &&
container.declAST.nodeType == NodeType.FuncDecl &&
(<FuncDecl>container.declAST).isConstructor &&
!funcDecl.isMethod()) {
funcScope = context.scopeChain.thisType.constructorScope;//locals;
}
else {
funcScope = context.scopeChain.scope;
}
}
// REVIEW: We don't search for another sym for accessors to prevent us from
// accidentally coalescing function signatures with the same name (E.g., a function
// 'f' the outer scope and a setter 'f' in an object literal within that scope)
if (nameText && nameText != "__missing" && !funcDecl.isAccessor()) {
if (isStatic) {
fgSym = funcScope.findLocal(nameText, false, false);
}
else {
// REVIEW: This logic should be symmetric with preCollectClassTypes
fgSym = funcScope.findLocal(nameText, false, false);
}
}
context.typeFlow.checker.createFunctionSignature(funcDecl, container,
funcScope, fgSym, fgSym == null);
// it's a getter or setter for a class property
if (!funcDecl.accessorSymbol &&
(funcDecl.fncFlags & FncFlags.ClassMethod) &&
container &&
((!fgSym || fgSym.declAST.nodeType != NodeType.FuncDecl) && funcDecl.isAccessor()) ||
(fgSym && fgSym.isAccessor()))
{
funcDecl.accessorSymbol = context.typeFlow.checker.createAccessorSymbol(funcDecl, fgSym, container.getType(), (funcDecl.isMethod() && isStatic), true, funcScope, container);
}
funcDecl.type.symbol.flags |= SymbolFlags.TypeSetDuringScopeAssignment;
}
// Set the symbol for functions and their overloads
if (funcDecl.name && funcDecl.type) {
funcDecl.name.sym = funcDecl.type.symbol;
}
// Keep track of the original scope type, because target typing might override
// the "type" member. We need the original "Scope type" for completion list, etc.
funcDecl.scopeType = funcDecl.type;
// Overloads have no scope, so bail here
if (funcDecl.isOverload) {
return;
}
var funcTable = new StringHashTable();
var funcMembers = new ScopedMembers(new DualStringHashTable(funcTable, new StringHashTable()));
var ambientFuncTable = new StringHashTable();
var ambientFuncMembers = new ScopedMembers(new DualStringHashTable(ambientFuncTable, new StringHashTable()));
var funcStaticTable = new StringHashTable();
var funcStaticMembers = new ScopedMembers(new DualStringHashTable(funcStaticTable, new StringHashTable()));
var ambientFuncStaticTable = new StringHashTable();
var ambientFuncStaticMembers = new ScopedMembers(new DualStringHashTable(ambientFuncStaticTable, new StringHashTable()));
// REVIEW: Is it a problem that this is being set twice for properties and constructors?
funcDecl.unitIndex = context.typeFlow.checker.locationInfo.unitIndex;
var locals = new SymbolScopeBuilder(funcMembers, ambientFuncMembers, null, null, parentScope, localContainer);
var statics = new SymbolScopeBuilder(funcStaticMembers, ambientFuncStaticMembers, null, null, parentScope, null);
if (funcDecl.isConstructor && context.scopeChain.thisType) {
context.scopeChain.thisType.constructorScope = locals;
}
// basically, there are two problems
// - Above, for new classes, we were overwriting the constructor scope with the containing scope. This caused constructor params to be
// in scope everywhere
// - Below, we're setting the contained scope table to the same table we were overwriting the constructor scope with, which we need to
// fish lambda params, etc, out (see funcTable below)
//
// A good first approach to solving this would be to change addLocalsFromScope to take a scope instead of a table, and add to the
// constructor scope as appropriate
funcDecl.symbols = funcTable;
if (!funcDecl.isSpecialFn()) {
var group = funcDecl.type;
var signature = funcDecl.signature;
if (!funcDecl.isConstructor) {
group.containedScope = locals;
locals.container = group.symbol;
group.memberScope = statics;
statics.container = group.symbol;
}
funcDecl.enclosingFnc = context.scopeChain.fnc;
group.enclosingType = isStatic ? context.scopeChain.classType : context.scopeChain.thisType;
// for mapping when type checking
var fgSym = <TypeSymbol>ast.type.symbol;
if (((funcDecl.fncFlags & FncFlags.Signature) == FncFlags.None) && funcDecl.vars) {
context.typeFlow.addLocalsFromScope(locals, fgSym, funcDecl.vars,
funcTable, false);
context.typeFlow.addLocalsFromScope(statics, fgSym, funcDecl.statics,
funcStaticTable, false);
}
if (signature.parameters) {
var len = signature.parameters.length;
for (var i = 0; i < len; i++) {
var paramSym: ParameterSymbol = signature.parameters[i];
context.typeFlow.checker.resolveTypeLink(locals,
paramSym.parameter.typeLink, true);
}
}
context.typeFlow.checker.resolveTypeLink(locals, signature.returnType,
funcDecl.isSignature());
}
if (!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) {
var thisType = (funcDecl.isConstructor && hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) ? context.scopeChain.thisType : null;
pushAssignScope(locals, context, thisType, null, funcDecl);
}
}
export function preAssignCatchScopes(ast: AST, context: AssignScopeContext) {
var catchBlock = <Catch>ast;
if (catchBlock.param) {
var catchTable = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable())); // REVIEW: Should we be allocating a public table instead of a private one?
var catchLocals = new SymbolScopeBuilder(catchTable, null, null, null, context.scopeChain.scope,
context.scopeChain.scope.container);
catchBlock.containedScope = catchLocals;
pushAssignScope(catchLocals, context, context.scopeChain.thisType, context.scopeChain.classType, context.scopeChain.fnc);
}
}
export function preAssignScopes(ast: AST, parent: AST, walker: IAstWalker) {
var context:AssignScopeContext = walker.state;
var go = true;
if (ast) {
if (ast.nodeType == NodeType.List) {
var list = <ASTList>ast;
list.enclosingScope = context.scopeChain.scope;
}
else if (ast.nodeType == NodeType.ModuleDeclaration) {
preAssignModuleScopes(ast, context);
}
else if (ast.nodeType == NodeType.ClassDeclaration) {
preAssignClassScopes(ast, context);
}
else if (ast.nodeType == NodeType.InterfaceDeclaration) {
preAssignInterfaceScopes(ast, context);
}
else if (ast.nodeType == NodeType.With) {
preAssignWithScopes(ast, context);
}
else if (ast.nodeType == NodeType.FuncDecl) {
preAssignFuncDeclScopes(ast, context);
}
else if (ast.nodeType == NodeType.Catch) {
preAssignCatchScopes(ast, context);
}
else if (ast.nodeType == NodeType.TypeRef) {
go = false;
}
}
walker.options.goChildren = go;
return ast;
}
export function postAssignScopes(ast: AST, parent: AST, walker: IAstWalker) {
var context:AssignScopeContext = walker.state;
var go = true;
if (ast) {
if (ast.nodeType == NodeType.ModuleDeclaration) {
var prevModDecl = <ModuleDeclaration>ast;
popAssignScope(context);
context.modDeclChain.pop();
if (context.modDeclChain.length >= 1) {
context.typeFlow.checker.currentModDecl = context.modDeclChain[context.modDeclChain.length - 1];
}
}
else if (ast.nodeType == NodeType.ClassDeclaration) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.InterfaceDeclaration) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.With) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.FuncDecl) {
var funcDecl = <FuncDecl>ast;
if ((!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) && !funcDecl.isOverload) {
popAssignScope(context);
}
}
else if (ast.nodeType == NodeType.Catch) {
var catchBlock = <Catch>ast;
if (catchBlock.param) {
popAssignScope(context);
}
}
else {
go = false;
}
}
walker.options.goChildren = go;
return ast;
}
}
//// [parserRealSource8.js]
// Copyright (c) Microsoft. All rights reserved. Licensed under the Apache License, Version 2.0.
// See LICENSE.txt in the project root for complete license information.
///<reference path='typescript.ts' />
var TypeScript;
(function (TypeScript) {
var AssignScopeContext = /** @class */ (function () {
function AssignScopeContext(scopeChain, typeFlow, modDeclChain) {
this.scopeChain = scopeChain;
this.typeFlow = typeFlow;
this.modDeclChain = modDeclChain;
}
return AssignScopeContext;
}());
TypeScript.AssignScopeContext = AssignScopeContext;
function pushAssignScope(scope, context, type, classType, fnc) {
var chain = new ScopeChain(null, context.scopeChain, scope);
chain.thisType = type;
chain.classType = classType;
chain.fnc = fnc;
context.scopeChain = chain;
}
TypeScript.pushAssignScope = pushAssignScope;
function popAssignScope(context) {
context.scopeChain = context.scopeChain.previous;
}
TypeScript.popAssignScope = popAssignScope;
function instanceCompare(a, b) {
if (((a == null) || (!a.isInstanceProperty()))) {
return b;
}
else {
return a;
}
}
TypeScript.instanceCompare = instanceCompare;
function instanceFilterStop(s) {
return s.isInstanceProperty();
}
TypeScript.instanceFilterStop = instanceFilterStop;
var ScopeSearchFilter = /** @class */ (function () {
function ScopeSearchFilter(select, stop) {
this.select = select;
this.stop = stop;
this.result = null;
}
ScopeSearchFilter.prototype.reset = function () {
this.result = null;
};
ScopeSearchFilter.prototype.update = function (b) {
this.result = this.select(this.result, b);
if (this.result) {
return this.stop(this.result);
}
else {
return false;
}
};
return ScopeSearchFilter;
}());
TypeScript.ScopeSearchFilter = ScopeSearchFilter;
TypeScript.instanceFilter = new ScopeSearchFilter(instanceCompare, instanceFilterStop);
function preAssignModuleScopes(ast, context) {
var moduleDecl = ast;
var memberScope = null;
var aggScope = null;
if (moduleDecl.name && moduleDecl.mod) {
moduleDecl.name.sym = moduleDecl.mod.symbol;
}
var mod = moduleDecl.mod;
// We're likely here because of error recovery
if (!mod) {
return;
}
memberScope = new SymbolTableScope(mod.members, mod.ambientMembers, mod.enclosedTypes, mod.ambientEnclosedTypes, mod.symbol);
mod.memberScope = memberScope;
context.modDeclChain.push(moduleDecl);
context.typeFlow.checker.currentModDecl = moduleDecl;
aggScope = new SymbolAggregateScope(mod.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, null, null, null);
mod.containedScope = aggScope;
if (mod.symbol) {
context.typeFlow.addLocalsFromScope(mod.containedScope, mod.symbol, moduleDecl.vars, mod.members.privateMembers, true);
}
}
TypeScript.preAssignModuleScopes = preAssignModuleScopes;
function preAssignClassScopes(ast, context) {
var classDecl = ast;
var memberScope = null;
var aggScope = null;
if (classDecl.name && classDecl.type) {
classDecl.name.sym = classDecl.type.symbol;
}
var classType = ast.type;
if (classType) {
var classSym = classType.symbol;
memberScope = context.typeFlow.checker.scopeOf(classType);
aggScope = new SymbolAggregateScope(classType.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
classType.containedScope = aggScope;
classType.memberScope = memberScope;
var instanceType = classType.instanceType;
memberScope = context.typeFlow.checker.scopeOf(instanceType);
instanceType.memberScope = memberScope;
aggScope = new SymbolAggregateScope(instanceType.symbol);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, instanceType, classType, null);
instanceType.containedScope = aggScope;
}
else {
ast.type = context.typeFlow.anyType;
}
}
TypeScript.preAssignClassScopes = preAssignClassScopes;
function preAssignInterfaceScopes(ast, context) {
var interfaceDecl = ast;
var memberScope = null;
var aggScope = null;
if (interfaceDecl.name && interfaceDecl.type) {
interfaceDecl.name.sym = interfaceDecl.type.symbol;
}
var interfaceType = ast.type;
memberScope = context.typeFlow.checker.scopeOf(interfaceType);
interfaceType.memberScope = memberScope;
aggScope = new SymbolAggregateScope(interfaceType.symbol);
aggScope.addParentScope(memberScope);
aggScope.addParentScope(context.scopeChain.scope);
pushAssignScope(aggScope, context, null, null, null);
interfaceType.containedScope = aggScope;
}
TypeScript.preAssignInterfaceScopes = preAssignInterfaceScopes;
function preAssignWithScopes(ast, context) {
var withStmt = ast;
var withType = withStmt.type;
var members = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable()));
var ambientMembers = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable()));
var withType = new Type();
var withSymbol = new WithSymbol(withStmt.minChar, context.typeFlow.checker.locationInfo.unitIndex, withType);
withType.members = members;
withType.ambientMembers = ambientMembers;
withType.symbol = withSymbol;
withType.setHasImplementation();
withStmt.type = withType;
var withScope = new TypeScript.SymbolScopeBuilder(withType.members, withType.ambientMembers, null, null, context.scopeChain.scope, withType.symbol);
pushAssignScope(withScope, context, null, null, null);
withType.containedScope = withScope;
}
TypeScript.preAssignWithScopes = preAssignWithScopes;
function preAssignFuncDeclScopes(ast, context) {
var funcDecl = ast;
var container = null;
var localContainer = null;
if (funcDecl.type) {
localContainer = ast.type.symbol;
}
var isStatic = hasFlag(funcDecl.fncFlags, FncFlags.Static);
var isInnerStatic = isStatic && context.scopeChain.fnc != null;
// for inner static functions, use the parent's member scope, so local vars cannot be captured
var parentScope = isInnerStatic ? context.scopeChain.fnc.type.memberScope : context.scopeChain.scope;
// if this is not a method, but enclosed by class, use constructor as
// the enclosing scope
// REVIEW: Some twisted logic here - this needs to be cleaned up once old classes are removed
// - if it's a new class, always use the contained scope, since we initialize the constructor scope below
if (context.scopeChain.thisType &&
(!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod))) {
var instType = context.scopeChain.thisType;
if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) {
if (!funcDecl.isMethod() || isStatic) {
parentScope = instType.constructorScope;
}
else {
// use constructor scope if a method as well
parentScope = instType.containedScope;
}
}
else {
if (context.scopeChain.previous.scope.container &&
context.scopeChain.previous.scope.container.declAST &&
context.scopeChain.previous.scope.container.declAST.nodeType == NodeType.FuncDecl &&
context.scopeChain.previous.scope.container.declAST.isConstructor) {
// if the parent is the class constructor, use the constructor scope
parentScope = instType.constructorScope;
}
else if (isStatic && context.scopeChain.classType) {
parentScope = context.scopeChain.classType.containedScope;
}
else {
// else, use the contained scope
parentScope = instType.containedScope;
}
}
container = instType.symbol;
}
else if (funcDecl.isConstructor && context.scopeChain.thisType) {
// sets the container to the class type's symbol (which is shared by the instance type)
container = context.scopeChain.thisType.symbol;
}
if (funcDecl.type == null || hasFlag(funcDecl.type.symbol.flags, SymbolFlags.TypeSetDuringScopeAssignment)) {
if (context.scopeChain.fnc && context.scopeChain.fnc.type) {
container = context.scopeChain.fnc.type.symbol;
}
var funcScope = null;
var outerFnc = context.scopeChain.fnc;
var nameText = funcDecl.name ? funcDecl.name.actualText : null;
var fgSym = null;
if (isStatic) {
// In the case of function-nested statics, no member list will have bee initialized for the function, so we need
// to copy it over. We don't set this by default because having a non-null member list will throw off assignment
// compatibility tests
if (outerFnc.type.members == null && container.getType().memberScope) {
outerFnc.type.members = container.type.memberScope.valueMembers;
}
funcScope = context.scopeChain.fnc.type.memberScope;
outerFnc.innerStaticFuncs[outerFnc.innerStaticFuncs.length] = funcDecl;
}
else {
if (!funcDecl.isConstructor &&
container &&
container.declAST &&
container.declAST.nodeType == NodeType.FuncDecl &&
container.declAST.isConstructor &&
!funcDecl.isMethod()) {
funcScope = context.scopeChain.thisType.constructorScope; //locals;
}
else {
funcScope = context.scopeChain.scope;
}
}
// REVIEW: We don't search for another sym for accessors to prevent us from
// accidentally coalescing function signatures with the same name (E.g., a function
// 'f' the outer scope and a setter 'f' in an object literal within that scope)
if (nameText && nameText != "__missing" && !funcDecl.isAccessor()) {
if (isStatic) {
fgSym = funcScope.findLocal(nameText, false, false);
}
else {
// REVIEW: This logic should be symmetric with preCollectClassTypes
fgSym = funcScope.findLocal(nameText, false, false);
}
}
context.typeFlow.checker.createFunctionSignature(funcDecl, container, funcScope, fgSym, fgSym == null);
// it's a getter or setter for a class property
if (!funcDecl.accessorSymbol &&
(funcDecl.fncFlags & FncFlags.ClassMethod) &&
container &&
((!fgSym || fgSym.declAST.nodeType != NodeType.FuncDecl) && funcDecl.isAccessor()) ||
(fgSym && fgSym.isAccessor())) {
funcDecl.accessorSymbol = context.typeFlow.checker.createAccessorSymbol(funcDecl, fgSym, container.getType(), (funcDecl.isMethod() && isStatic), true, funcScope, container);
}
funcDecl.type.symbol.flags |= SymbolFlags.TypeSetDuringScopeAssignment;
}
// Set the symbol for functions and their overloads
if (funcDecl.name && funcDecl.type) {
funcDecl.name.sym = funcDecl.type.symbol;
}
// Keep track of the original scope type, because target typing might override
// the "type" member. We need the original "Scope type" for completion list, etc.
funcDecl.scopeType = funcDecl.type;
// Overloads have no scope, so bail here
if (funcDecl.isOverload) {
return;
}
var funcTable = new StringHashTable();
var funcMembers = new ScopedMembers(new DualStringHashTable(funcTable, new StringHashTable()));
var ambientFuncTable = new StringHashTable();
var ambientFuncMembers = new ScopedMembers(new DualStringHashTable(ambientFuncTable, new StringHashTable()));
var funcStaticTable = new StringHashTable();
var funcStaticMembers = new ScopedMembers(new DualStringHashTable(funcStaticTable, new StringHashTable()));
var ambientFuncStaticTable = new StringHashTable();
var ambientFuncStaticMembers = new ScopedMembers(new DualStringHashTable(ambientFuncStaticTable, new StringHashTable()));
// REVIEW: Is it a problem that this is being set twice for properties and constructors?
funcDecl.unitIndex = context.typeFlow.checker.locationInfo.unitIndex;
var locals = new SymbolScopeBuilder(funcMembers, ambientFuncMembers, null, null, parentScope, localContainer);
var statics = new SymbolScopeBuilder(funcStaticMembers, ambientFuncStaticMembers, null, null, parentScope, null);
if (funcDecl.isConstructor && context.scopeChain.thisType) {
context.scopeChain.thisType.constructorScope = locals;
}
// basically, there are two problems
// - Above, for new classes, we were overwriting the constructor scope with the containing scope. This caused constructor params to be
// in scope everywhere
// - Below, we're setting the contained scope table to the same table we were overwriting the constructor scope with, which we need to
// fish lambda params, etc, out (see funcTable below)
//
// A good first approach to solving this would be to change addLocalsFromScope to take a scope instead of a table, and add to the
// constructor scope as appropriate
funcDecl.symbols = funcTable;
if (!funcDecl.isSpecialFn()) {
var group = funcDecl.type;
var signature = funcDecl.signature;
if (!funcDecl.isConstructor) {
group.containedScope = locals;
locals.container = group.symbol;
group.memberScope = statics;
statics.container = group.symbol;
}
funcDecl.enclosingFnc = context.scopeChain.fnc;
group.enclosingType = isStatic ? context.scopeChain.classType : context.scopeChain.thisType;
// for mapping when type checking
var fgSym = ast.type.symbol;
if (((funcDecl.fncFlags & FncFlags.Signature) == FncFlags.None) && funcDecl.vars) {
context.typeFlow.addLocalsFromScope(locals, fgSym, funcDecl.vars, funcTable, false);
context.typeFlow.addLocalsFromScope(statics, fgSym, funcDecl.statics, funcStaticTable, false);
}
if (signature.parameters) {
var len = signature.parameters.length;
for (var i = 0; i < len; i++) {
var paramSym = signature.parameters[i];
context.typeFlow.checker.resolveTypeLink(locals, paramSym.parameter.typeLink, true);
}
}
context.typeFlow.checker.resolveTypeLink(locals, signature.returnType, funcDecl.isSignature());
}
if (!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) {
var thisType = (funcDecl.isConstructor && hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) ? context.scopeChain.thisType : null;
pushAssignScope(locals, context, thisType, null, funcDecl);
}
}
TypeScript.preAssignFuncDeclScopes = preAssignFuncDeclScopes;
function preAssignCatchScopes(ast, context) {
var catchBlock = ast;
if (catchBlock.param) {
var catchTable = new ScopedMembers(new DualStringHashTable(new StringHashTable(), new StringHashTable())); // REVIEW: Should we be allocating a public table instead of a private one?
var catchLocals = new SymbolScopeBuilder(catchTable, null, null, null, context.scopeChain.scope, context.scopeChain.scope.container);
catchBlock.containedScope = catchLocals;
pushAssignScope(catchLocals, context, context.scopeChain.thisType, context.scopeChain.classType, context.scopeChain.fnc);
}
}
TypeScript.preAssignCatchScopes = preAssignCatchScopes;
function preAssignScopes(ast, parent, walker) {
var context = walker.state;
var go = true;
if (ast) {
if (ast.nodeType == NodeType.List) {
var list = ast;
list.enclosingScope = context.scopeChain.scope;
}
else if (ast.nodeType == NodeType.ModuleDeclaration) {
preAssignModuleScopes(ast, context);
}
else if (ast.nodeType == NodeType.ClassDeclaration) {
preAssignClassScopes(ast, context);
}
else if (ast.nodeType == NodeType.InterfaceDeclaration) {
preAssignInterfaceScopes(ast, context);
}
else if (ast.nodeType == NodeType.With) {
preAssignWithScopes(ast, context);
}
else if (ast.nodeType == NodeType.FuncDecl) {
preAssignFuncDeclScopes(ast, context);
}
else if (ast.nodeType == NodeType.Catch) {
preAssignCatchScopes(ast, context);
}
else if (ast.nodeType == NodeType.TypeRef) {
go = false;
}
}
walker.options.goChildren = go;
return ast;
}
TypeScript.preAssignScopes = preAssignScopes;
function postAssignScopes(ast, parent, walker) {
var context = walker.state;
var go = true;
if (ast) {
if (ast.nodeType == NodeType.ModuleDeclaration) {
var prevModDecl = ast;
popAssignScope(context);
context.modDeclChain.pop();
if (context.modDeclChain.length >= 1) {
context.typeFlow.checker.currentModDecl = context.modDeclChain[context.modDeclChain.length - 1];
}
}
else if (ast.nodeType == NodeType.ClassDeclaration) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.InterfaceDeclaration) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.With) {
popAssignScope(context);
}
else if (ast.nodeType == NodeType.FuncDecl) {
var funcDecl = ast;
if ((!funcDecl.isConstructor || hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)) && !funcDecl.isOverload) {
popAssignScope(context);
}
}
else if (ast.nodeType == NodeType.Catch) {
var catchBlock = ast;
if (catchBlock.param) {
popAssignScope(context);
}
}
else {
go = false;
}
}
walker.options.goChildren = go;
return ast;
}
TypeScript.postAssignScopes = postAssignScopes;
})(TypeScript || (TypeScript = {}));
|