Module DataFlow::ContentSet
Companion module to the ContentSet
class, providing access to various content sets.
Import path
import javascript
Predicates
anyCapturedContent | Gets a content set that reads from all captured variables stored on a function. |
anyProperty | Gets a content set that reads from all ordinary properties. |
arrayElement | A content set describing all array elements, regardless of their index in the array. |
arrayElementFromInt | Gets the content set describing an access to array index |
arrayElementKnown | A content set describing an access to array index |
arrayElementLowerBound | A content set describing array elements at index |
arrayElementLowerBoundFromInt | Gets a content set describing array elements at index |
arrayElementUnknown | The singleton content set describing array elements stored at an unknown index. |
fromLegacyProperty | Gets the content set corresponding to the given property name, where legacy pseudo-properties are mapped to their corresponding content sets (which are no longer seen as property names). |
iteratorElement | Gets the content set describing the elements of an iterator object. |
iteratorError | Gets the content set describing the exception to be thrown when attempting to iterate over the given value. |
iteratorFilter | A content set that should only be used in |
mapKey | Gets the content set describing the keys of a |
mapValueAll | Gets the content set describing all values in a map (with known or unknown key). |
mapValueFromKey | Gets the content set describing the value in a |
mapValueWithKnownKey | Gets the content set describing an access to a map value with the given |
mapValueWithKnownKeyStrict | Gets the content set describing the value of a |
mapValueWithUnknownKey | Gets the content set describing the values of a |
promiseError | A content set describing the error stored in a rejected promise. |
promiseFilter | A content set that should only be used in |
promiseValue | A content set describing the result of a resolved promise. |
property | A content set corresponding to the given property name. |
setElement | Gets the content set describing the elements of a |
singleton | A content set containing only the given content. |