13 references to CheckExpression
Microsoft.VisualStudio.LanguageServices.IntegrationTests (13)
VisualBasic\BasicEditAndContinue.cs (5)
70VisualStudio.Debugger.CheckExpression("names(1)", "String", "\"goo\""); 72VisualStudio.Debugger.CheckExpression("names(1)", "String", "\"bar\""); 159VisualStudio.Debugger.CheckExpression("x", "Integer", "42"); 296VisualStudio.Debugger.CheckExpression("iInt", "Integer", "0"); 305VisualStudio.Debugger.CheckExpression("iInt", "Integer", "5");
VisualBasic\BasicExpressionEvaluator.cs (8)
106VisualStudio.Debugger.CheckExpression("myByte", "Byte", "128"); 107VisualStudio.Debugger.CheckExpression("myFloat", "Single", "1.70141173E+38"); 108VisualStudio.Debugger.CheckExpression("myChar", "Char", "\"A\"c"); 109VisualStudio.Debugger.CheckExpression("myObject", "Object", "Nothing"); 110VisualStudio.Debugger.CheckExpression("myString", "String", "\"\""); 118VisualStudio.Debugger.CheckExpression("(Function(val)(val+val))(1)", "Integer", "2"); 125VisualStudio.Debugger.CheckExpression("myNonsense", "", "error BC30451: 'myNonsense' is not declared. It may be inaccessible due to its protection level."); 156VisualStudio.Debugger.CheckExpression("GetType(T) = GetType(String)", "Boolean", "True");