The following files are consumed only by the language service and do not have to be in compiler-cli: 1. expression_diagnostics.ts 2. expression_type.ts 3. typescript_symbols.ts 4. symbols.ts PR Close #33809
		
			
				
	
	
		
			29 lines
		
	
	
		
			981 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			981 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google Inc. All Rights Reserved.
 | 
						|
 *
 | 
						|
 * Use of this source code is governed by an MIT-style license that can be
 | 
						|
 * found in the LICENSE file at https://angular.io/license
 | 
						|
 */
 | 
						|
 | 
						|
import * as ts from 'typescript/lib/tsserverlibrary';
 | 
						|
 | 
						|
import {EMPTY_SYMBOL_TABLE, createGlobalSymbolTable} from '../src/global_symbols';
 | 
						|
import {getSymbolQuery} from '../src/typescript_symbols';
 | 
						|
 | 
						|
import {MockTypescriptHost} from './test_utils';
 | 
						|
 | 
						|
describe('GlobalSymbolTable', () => {
 | 
						|
  const mockHost = new MockTypescriptHost([]);
 | 
						|
  const tsLS = ts.createLanguageService(mockHost);
 | 
						|
 | 
						|
  it(`contains $any()`, () => {
 | 
						|
    const program = tsLS.getProgram() !;
 | 
						|
    const typeChecker = program.getTypeChecker();
 | 
						|
    const source = ts.createSourceFile('foo.ts', '', ts.ScriptTarget.ES2015);
 | 
						|
    const query = getSymbolQuery(program, typeChecker, source, () => EMPTY_SYMBOL_TABLE);
 | 
						|
    const table = createGlobalSymbolTable(query);
 | 
						|
    expect(table.has('$any')).toBe(true);
 | 
						|
  });
 | 
						|
});
 |