未验证 提交 810b9b91 编写于 作者: A Anna Gringauze 提交者: GitHub

supporting changes for evaluation in web debugger (#16309)

 add compileExpressionToJs in frontend server in preparation for coming
  evaluation changes in the SDK
上级 e43a100b
......@@ -70,6 +70,17 @@ class _FlutterFrontendCompiler implements frontend.CompilerInterface {
expression, definitions, typeDefinitions, libraryUri, klass, isStatic);
}
Future<Null> compileExpressionToJs(
String libraryUri,
int line,
int column,
Map<String,String> jsModules,
Map<String,String> jsFrameValues,
String moduleName,
String expression) {
throw UnimplementedError('Compile expression to JS is not supported');
}
@override
void reportError(String msg) {
_compiler.reportError(msg);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册