Skip to content

Commit 2a484a6

Browse files
authored
3.x: enable javac parameter saving in class files (#6839)
1 parent 4dd4a65 commit 2a484a6

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ dependencies {
8787
testImplementation "com.google.guava:guava:$guavaVersion"
8888
}
8989

90+
tasks.withType(JavaCompile) {
91+
options.compilerArgs << "-parameters";
92+
}
93+
9094
javadoc {
9195
failOnError = false
9296
exclude "**/internal/**"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* Copyright (c) 2016-present, RxJava Contributors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
5+
* compliance with the License. You may obtain a copy of the License at
6+
*
7+
* http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software distributed under the License is
10+
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
11+
* the License for the specific language governing permissions and limitations under the License.
12+
*/
13+
14+
package io.reactivex.rxjava3.validators;
15+
16+
import static org.junit.Assert.assertEquals;
17+
import org.junit.Test;
18+
19+
public class ParameterNamesInClassesTest {
20+
void method(int paramName) {
21+
// deliberately empty
22+
}
23+
24+
@Test
25+
public void javacParametersEnabled() throws Exception {
26+
assertEquals("Please enable saving parameter names via the -parameters javac argument",
27+
"paramName",
28+
getClass()
29+
.getDeclaredMethod("method", Integer.TYPE)
30+
.getParameters()[0].getName());
31+
}
32+
}

0 commit comments

Comments
 (0)