| Index: tools/dom/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| index e6036ae3bb295f938639c781cac2e5d49a938cbd..543cf1b8a04d9f662e496818278ad8744af8ef77 100644
|
| --- a/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| @@ -275,25 +275,25 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| * Binds the attribute [name] to the [path] of the [model].
|
| * Path is a String of accessors such as `foo.bar.baz`.
|
| */
|
| - @Experimental
|
| + @Experimental()
|
| void bind(String name, model, String path) {
|
| TemplateElement.mdvPackage(this).bind(name, model, path);
|
| }
|
|
|
| /** Unbinds the attribute [name]. */
|
| - @Experimental
|
| + @Experimental()
|
| void unbind(String name) {
|
| TemplateElement.mdvPackage(this).unbind(name);
|
| }
|
|
|
| /** Unbinds all bound attributes. */
|
| - @Experimental
|
| + @Experimental()
|
| void unbindAll() {
|
| TemplateElement.mdvPackage(this).unbindAll();
|
| }
|
|
|
| /** Gets the template instance that instantiated this node, if any. */
|
| - @Experimental
|
| + @Experimental()
|
| TemplateInstance get templateInstance =>
|
| TemplateElement.mdvPackage(this).templateInstance;
|
|
|
|
|