AngularTS
    Preparing search index...

    Interface CompiledExpressionProps

    Describes metadata and behavior for a compiled AngularTS expression.

    interface CompiledExpressionProps {
        _assign?: (scope: Scope, value: any, locals?: object) => any;
        _decoratedNode: BodyNode;
        _inputs?: Function | any[];
        _interceptor?: (value: any) => any;
        _isPure?: boolean;
        _literal: boolean;
        constant: boolean;
    }
    Index

    Properties

    _assign?: (scope: Scope, value: any, locals?: object) => any

    Optional assign function for two-way binding. Assigns a value to a context. If value is not provided, may return the getter.

    _decoratedNode: BodyNode

    AST node decorated with metadata.

    _inputs?: Function | any[]

    Expression inputs; may be an array or a function.

    _interceptor?: (value: any) => any

    Optional interceptor applied to the evaluated result.

    _isPure?: boolean

    Optional flag for pure expressions.

    _literal: boolean

    Indicates if the expression is a literal.

    constant: boolean

    Indicates if the expression is constant.