fix IllegalArgumentException
[fedora-idea.git] / platform / lang-impl / src / com / intellij / codeInsight / dataflow / DfaInstance.java
blob716ec69893740386a85bcd6f9450134133066f19
1 /*
2 * Copyright 2000-2007 JetBrains s.r.o.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
15 package com.intellij.codeInsight.dataflow;
17 import com.intellij.codeInsight.controlflow.Instruction;
18 import org.jetbrains.annotations.NotNull;
20 public interface DfaInstance<E> {
21 // Invariant: fun must create new instance of DFAMap if modifies it
22 DFAMap<E> fun(DFAMap<E> e, Instruction instruction);
24 @NotNull
25 DFAMap<E> initial();
27 boolean isForward();