To set a breakpoint at line 301 of EXAMPLE.CPP:
If you omit either function or module, the two commas cannot be omitted. As a result, the following syntax is invalid:
{File.c, File.exe} @143 // Invalid syntax
If you omit both source and module, however, you can omit the commas. The following syntax is valid:
If the source or module path includes a comma, an embedded space, or a brace, you must use quotation marks around the path so that the context parser can properly recognize the string. Single quotation marks are considered part of a Windows file name, so you must use double quotation marks. For example,
{,"a long, long, name.c", } .143
When the expression evaluator encounters a symbol in an expression, it searches for the symbol in the following order:
Lexical scope outward, starting with the current block, series of statements enclosed in braces, and continuing outward with the enclosing block. The current block is the code containing the current location, instruction pointer address.
Function scope. The current function.
Class scope, if the current location is inside a C++ member function. Class scope includes all base classes. The expression evaluator uses the normal dominance rules.
Current module.
Global symbols.
Other modules.
Public symbols in the program.
With the context operator, you specify the starting point of the search and bypass the current location. You cannot specify a class, but you can specify a member function of the class and let the expression evaluator search outward.