Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: tests/language_strong/proxy_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/proxy_test.dart
diff --git a/tests/language_strong/proxy_test.dart b/tests/language_strong/proxy_test.dart
index 4d4c1c7f032f422bdcb44125505d86efb6842919..404e274a631ffd703cbd25ad00f3a7481b2e63cc 100644
--- a/tests/language_strong/proxy_test.dart
+++ b/tests/language_strong/proxy_test.dart
@@ -15,12 +15,12 @@ const alias = proxy;
class AliasProxy {}
main() {
- try { new NonProxy().foo; } catch (e) {} /// 01: static type warning
- try { new NonProxy().foo(); } catch (e) {} /// 02: static type warning
+ try { new NonProxy().foo; } catch (e) {} //# 01: static type warning
+ try { new NonProxy().foo(); } catch (e) {} //# 02: static type warning
- try { new Proxy().foo; } catch (e) {} /// 03: ok
- try { new Proxy().foo(); } catch (e) {} /// 04: ok
+ try { new Proxy().foo; } catch (e) {} //# 03: ok
+ try { new Proxy().foo(); } catch (e) {} //# 04: ok
- try { new AliasProxy().foo; } catch (e) {} /// 05: ok
- try { new AliasProxy().foo(); } catch (e) {} /// 06: ok
+ try { new AliasProxy().foo; } catch (e) {} //# 05: ok
+ try { new AliasProxy().foo(); } catch (e) {} //# 06: ok
}

Powered by Google App Engine
This is Rietveld 408576698