1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation and GitHub. All rights reserved. 3 *--------------------------------------------------------------------------------------------*/ 4 5class Foo { 6 bar() { 7 console.log('bar'); 8 } 9 10 qux() { 11 console.log('qux'); 12 } 13 14 baz() { 15 this.bar(); 16 } 17} 18 19