/****************************************************************************** * Copyright 2021 TypeFox GmbH * This program and the accompanying materials are made available under the * terms of the MIT License, which is available in the project root. ******************************************************************************/ import type { AstNodeDescription, Scope, ScopeOptions } from 'langium'; import { DefaultScopeProvider } from 'langium'; /** * Special scope provider that matches symbol names regardless of lowercase or uppercase. */ export declare class ArithmeticsScopeProvider extends DefaultScopeProvider { protected createScope(elements: Iterable, outerScope: Scope, options?: ScopeOptions): Scope; protected getGlobalScope(referenceType: string): Scope; } //# sourceMappingURL=arithmetics-scope-provider.d.ts.map