blob: c05f6de185afd4d5cfc36b5f32c11e0afd90f14c [file] [log] [blame]
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// 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 net.starlark.java.annot.processor.testsources;
import net.starlark.java.annot.Param;
import net.starlark.java.annot.StarlarkMethod;
import net.starlark.java.eval.Dict;
import net.starlark.java.eval.Sequence;
import net.starlark.java.eval.StarlarkInt;
import net.starlark.java.eval.StarlarkThread;
import net.starlark.java.eval.StarlarkValue;
/**
* Test case for a StarlarkMethod which has a "extraKeywords" parameter which has enableOnlyWithFlag
* set. (This is unsupported.)
*/
public class ToggledKwargsParam implements StarlarkValue {
private static final String FOO = "-foo";
@StarlarkMethod(
name = "toggled_kwargs_method",
documented = false,
parameters = {
@Param(name = "one", named = true),
@Param(name = "two", named = true),
},
extraPositionals = @Param(name = "args"),
extraKeywords = @Param(name = "kwargs", enableOnlyWithFlag = FOO),
useStarlarkThread = true)
public String toggledKwargsMethod(
String one, StarlarkInt two, Sequence<?> args, Dict<?, ?> kwargs, StarlarkThread thread) {
return "cat";
}
}