You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document is an informal specification of the dispatching parameter
feature in Dart. That feature allows a function parameter to implicitly
serve as the receiver for member accesses (e.g., calling instance methods)
in the body of the function, similar to the ability of the object denoted by
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This document is an informal specification of the
anonymous extension method feature in Dart.
This feature allows for writing a function in an expression whose
semantics makes it similar to an instance method on the result of an
Coq source for verifying example cases for voidness preservation criteria
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Coq source for model of voidness preservation criteria
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFORMAL SPECIFICATION: Generic Function Type Alias
This document is now obsolete, please refer to the current version.
Feature: Generic Function Type Alias
Status: Under implementation.
This document is an informal specification of a feature supporting the
definition of function type aliases using a more expressive syntax than the
one available today, such that it also covers generic function types. The
feature also introduces syntax for specifying function types directly, such
This document is now obsolete, please refer to the
current version.
Feature: Generic Method Syntax
This document is an informal specification of the support for generic methods and functions which has been implemented in dart2js with option --generic-method-syntax, starting with commit acc5f59. In SDK 1.21 this feature is available by default (i.e., also without the option) in the virtual machine and the analyzer, as well as in dart2js.
The motivation for having this feature is that it enables partial support for generic methods and functions, thus providing a bridge between not having generic methods and having full support for generic methods. In particular, code declaring and using generic methods may be type checked and compiled in strong mode, and the same code will now be acceptable in standard (non-