This proposal introduces syntax and semantics to support partial application of call and new
expressions.
See the proposal repository for background material and discussion.
A ArgumentPlaceholder Record is a
ArgumentPlaceholder Records have the fields listed in
Field Name | Value | Meaning |
---|---|---|
[[Kind]] |
|
A value indicating a positional placeholder (i.e., ? ), an ordinal placeholder (i.e., ?0 ), or a "rest" placeholder (i.e., ... ) in a partial application.
|
[[Ordinal]] | A Number. |
For an ordinal placeholder, the ordinal position of the related parameter in the resulting |
A
An object is a bound function exotic object if its [[Call]] and (if applicable) [[Construct]] internal methods use the following implementations, and its other essential internal methods use the definitions found in
Internal Slot | Type | Description |
---|---|---|
[[BoundTargetFunction]] | Callable Object |
The wrapped |
[[BoundThis]] | Any |
The value that is always passed as the |
[[BoundArguments]] |
|
A list of values whose elements are used as the first arguments to any call to the wrapped function. |
[[Kind]] |
|
A value indicating whether the |
The [[Call]] internal method of a
The [[Construct]] internal method of a
The abstract operation BoundFunctionCreate takes arguments targetFunction (a
The abstract operation ApplyPartialArguments takes arguments boundArgs (a
The abstract operation PartialCall takes arguments F (an
The abstract operation PartialConstruct takes arguments F (a
When processing an instance of the production
the interpretation of
new
OperatorThe abstract operation EvaluateNew takes arguments constructExpr (a
The abstract operation EvaluateCall takes arguments func (an
The evaluation of an argument list produces a
© 2021 Ron Buckton, Ecma International
All Software contained in this document ("Software") is protected by copyright and is being made available under the "BSD License", included below. This Software may be subject to third party rights (rights from parties other than Ecma International), including patent rights, and no licenses under such third party rights are granted under this license even if the third party concerned is a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT https://ecma-international.org/memento/codeofconduct.htm FOR INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO IMPLEMENT ECMA INTERNATIONAL STANDARDS.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ECMA INTERNATIONAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.