Sha256: 01b5f94159ac209180cf5dac51276904c579b74770df297a4fce4047b5475887

Contents?: true

Size: 1.5 KB

Versions: 5

Compression:

Stored size: 1.5 KB

Contents

import { ObjectPath } from '../values';
import CallOptions from '../CallOptions';
import ExecutionPathOptions from '../ExecutionPathOptions';
import { ForEachReturnExpressionCallback, PredicateFunction, SomeReturnExpressionCallback } from './shared/Expression';
import { NodeType } from './NodeType';
import { ExpressionNode, NodeBase } from './shared/Node';
export declare type LogicalOperator = '||' | '&&';
export default class LogicalExpression extends NodeBase {
    type: NodeType.LogicalExpression;
    operator: LogicalOperator;
    left: ExpressionNode;
    right: ExpressionNode;
    reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
    forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
    getValue(): any;
    hasEffects(options: ExecutionPathOptions): boolean;
    hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
    hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
    hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
    someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
    _forEachRelevantBranch(callback: (node: ExpressionNode) => void): void;
    _someRelevantBranch(predicateFunction: PredicateFunction): boolean;
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jass-0.9.5 vendor/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts
jass-0.9.4 vendor/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts
jass-0.9.3 vendor/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts
condenser-0.0.4 lib/condenser/processors/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts
jass-0.9.1 vendor/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts