change SourceBreakpoint attribute 'expression' to 'condition'

This commit is contained in:
Andre Weinand 2015-12-28 16:00:46 +01:00
parent b6393b9219
commit 3f329325ac
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"account": "monacobuild",
"container": "debuggers",
"zip": "c8d7980/node-debug.zip",
"zip": "f1ea61a/node-debug.zip",
"output": ""
}

View file

@ -500,7 +500,7 @@ declare module DebugProtocol {
/** An optional source column of the breakpoint. */
column?: number;
/** An optional expression for conditional breakpoints. */
expression?: string;
condition?: string;
}
/** Information about a Breakpoint created in the setBreakpoints request.