Conversation
The `extractArgumentsList_` method is not used.
| // TODO: Address the case when `id` is `undefined`. | ||
| project, id as string, that.config_.serviceContext, sourceContext, | ||
| that.config_.description, null, onGCP); | ||
| onGCP, that.config_.description, undefined); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
test/test-debuglet.ts
Outdated
| // TODO: Verify that `null` for minorVersion_ should be used here | ||
| // or if minorVersion_ should be optional. | ||
| {service: 'some-service', version: 'production', minorVersion_: null}, | ||
| {service: 'some-service', version: 'production', minorVersion_: undefined}, |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
test/test-debuglet.ts
Outdated
| // TODO: Determine if these are the correct values that should be | ||
| // use here. | ||
| {}, null, null, false); | ||
| {}, false, undefined, undefined); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
test/test-debuglet.ts
Outdated
| // TODO: Verify that `null` for minorVersion_ should be used here | ||
| // or if minorVersion_ should be optional. | ||
| {service: 'default', version: 'yellow.5', minorVersion_: null}, | ||
| {service: 'default', version: 'yellow.5', minorVersion_: undefined}, |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
test/test-debuglet.ts
Outdated
| // TODO: Determine if these are the correct values that should be | ||
| // use here. | ||
| {}, null, null, false); | ||
| {}, false, undefined, undefined); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
test/test-debuglet.ts
Outdated
| 'a', 'b', undefined as any, undefined as any, undefined as any, 'Some Error Message', | ||
| // TODO: Determine if this value for onGCP is correct. | ||
| false); | ||
| 'a', 'b', undefined as any, undefined as any, false, undefined as any, 'Some Error Message'); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| import {DebugAgentConfig} from './config'; | ||
|
|
||
| // TODO: Determine if `ScopeType` should be named `scopeType`. | ||
| // tslint:disable-next-line:variable-name |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This reverts commit 979fa02.
| description?: string; | ||
|
|
||
| /** | ||
| * Whether or not it is permitted to evaluate expressions. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| private debugletApi_: Controller; | ||
| private completedBreakpointMap_: {[key: string]: boolean}; | ||
|
|
||
| // Exposed for testing |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
As part of the change to Typescript, many TODOs were added to the code for items to address. This PR addresses some of these TODOs.