From efe2155f28a276a8c868c25a424640c44ba9d3c2 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 11 May 2012 18:58:54 +0400 Subject: [PATCH] Intermediate major refactorings for lazy resolve --- .../lang/descriptors/WithDeferredResolve.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 compiler/frontend/src/org/jetbrains/jet/lang/descriptors/WithDeferredResolve.java diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/WithDeferredResolve.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/WithDeferredResolve.java new file mode 100644 index 00000000000..da3177fa2e4 --- /dev/null +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/WithDeferredResolve.java @@ -0,0 +1,25 @@ +/* + * Copyright 2010-2012 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.jetbrains.jet.lang.descriptors; + +/** + * @author Nikolay Krasko + */ +public interface WithDeferredResolve { + void forceResolve(); + boolean isAlreadyResolved(); +}