From 71503774d5e67091d5add2f2b7fa680df98f7779 Mon Sep 17 00:00:00 2001 From: John Messerly Date: Wed, 13 Jul 2016 12:03:32 -0700 Subject: [PATCH] Remove the experimental tag from the flag header If it becomes non-experimental it would break the http link. Experimental note still exists in prose. --- pkg/dev_compiler/doc/STATIC_SAFETY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/dev_compiler/doc/STATIC_SAFETY.md b/pkg/dev_compiler/doc/STATIC_SAFETY.md index 0d8fe8bb84b..adafc4e127e 100644 --- a/pkg/dev_compiler/doc/STATIC_SAFETY.md +++ b/pkg/dev_compiler/doc/STATIC_SAFETY.md @@ -418,7 +418,7 @@ code where a field definition in a subclass shadows the field ## Optional Features -### Disable implicit casts (experimental) +### Disable implicit casts This is an optional feature of strong mode. It disables implicit down casts. For example: @@ -455,7 +455,7 @@ Or pass `--no-implicit-casts` to Dart Analyzer: dartanalyzer --strong --no-implicit-casts my_app.dart ``` -### Disable implicit dynamic (experimental) +### Disable implicit dynamic This is an optional feature of analyzer, intended primarily for use with strong mode's inference. It rejects implicit uses of `dynamic` that strong mode inference fails to fill in with a concrete type,