TypeScript/tests/cases/fourslash/breakpointValidationDestructuringParameterObjectBindingPatternDefaultValues.ts
2015-12-17 16:53:59 -08:00

27 lines
859 B
TypeScript

/// <reference path='fourslash.ts' />
////interface Robot {
//// name?: string;
//// skill?: string;
////}
////declare var console: {
//// log(msg: string): void;
////}
////var hello = "hello";
////var robotA: Robot = { name: "mower", skill: "mowing" };
////function foo1({ name: nameA = "<NoName>" }: Robot = { }) {
//// console.log(nameA);
////}
////function foo2({ name: nameB = "<NoName>", skill: skillB = "noSkill" }: Robot = {}) {
//// console.log(nameB);
////}
////function foo3({ name = "<NoName>" }: Robot = {}) {
//// console.log(name);
////}
////foo1(robotA);
////foo1({ name: "Edger", skill: "cutting edges" });
////foo2(robotA);
////foo2({ name: "Edger", skill: "cutting edges" });
////foo3(robotA);
////foo3({ name: "Edger", skill: "cutting edges" });
verify.baselineCurrentFileBreakpointLocations();