From 4a86f347b1cf706eb1aa1caa3eef46fc73c6287d Mon Sep 17 00:00:00 2001 From: Alex Tkachman Date: Wed, 1 Feb 2012 10:03:30 +0200 Subject: [PATCH] ValueParameterDescriptor must implement Annotated --- .../jet/lang/descriptors/ValueParameterDescriptor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java index 0cbe2362042..85fd11d2460 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java @@ -2,12 +2,13 @@ package org.jetbrains.jet.lang.descriptors; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; +import org.jetbrains.jet.lang.descriptors.annotations.Annotated; import org.jetbrains.jet.lang.types.JetType; /** * @author abreslav */ -public interface ValueParameterDescriptor extends VariableDescriptor { +public interface ValueParameterDescriptor extends VariableDescriptor, Annotated { /** * Returns the 0-based index of the value parameter in the parameter list of its containing function. *