1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation and GitHub. All rights reserved. 3 *--------------------------------------------------------------------------------------------*/ 4 5export class Foo { 6 bar() { 7 return 1; 8 } 9} 10 11export class Baz { // This class declaration is irrelevant to the implementation of quuz 12 qux() { 13 return 2; 14 } 15} 16 17function quuz() { 18 new Foo(); 19} 20 21