Skip to content

Commit e176a10

Browse files
committed
Merge pull request scala#2906 from retronym/merge/2.10.x-to-2.10.3
Merge/2.10.x to 2.10.3
2 parents 502b9f0 + d5ce3de commit e176a10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2169
-319
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#
2+
# Are you tempted to edit this file?
3+
#
4+
# First consider if the changes make sense for all,
5+
# or if they are specific to your workflow/system.
6+
# If it is the latter, you can augment this list with
7+
# entries in .git/info/excludes
8+
#
9+
# see also test/files/.gitignore
10+
#
11+
12+
#
13+
# JARs aren't checked in, they are fetched by Ant / pull_binary_libs.sh
14+
#
15+
# We could be more concise with /lib/**/*.jar but that assumes
16+
# a late-model git.
17+
#
18+
/lib/ant/*.jar
19+
/lib/*.jar
20+
/test/files/codelib/*.jar
21+
/test/files/lib/*.jar
22+
/test/files/speclib/instrumented.jar
23+
/tools/*.jar
24+
25+
# Developer specific Ant properties
26+
/build.properties
27+
28+
# target directories for ant build
29+
/build/
30+
/dists/
31+
32+
# other
33+
/out/
34+
/bin/
35+
/sandbox/
36+
37+
# eclipse, intellij
38+
/.classpath
39+
/.project
40+
/src/intellij/*.iml
41+
/src/intellij/*.ipr
42+
/src/intellij/*.iws
43+
/.cache
44+
/.idea
45+
/.settings
46+
47+
# Standard symbolic link to build/quick/bin
48+
/qbin

bincompat-backward.whitelist.conf

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,50 @@ filter {
267267
{
268268
matchName="scala.reflect.internal.SymbolTable.scala$reflect$internal$Trees$$duplicator"
269269
problemName=IncompatibleResultTypeProblem
270+
},
271+
{
272+
matchName="scala.reflect.internal.StdNames.compactifyName"
273+
problemName=MissingMethodProblem
274+
},
275+
{
276+
matchName="scala.reflect.internal.util.WeakHashSet"
277+
problemName=FinalClassProblem
278+
},
279+
{
280+
matchName="scala.reflect.internal.util.WeakReferenceWithEquals"
281+
problemName=MissingClassProblem
282+
},
283+
{
284+
matchName="scala.reflect.internal.SymbolTable.scala$reflect$internal$Types$$uniques"
285+
problemName=IncompatibleResultTypeProblem
286+
},
287+
{
288+
matchName="scala.reflect.internal.SymbolTable.scala$reflect$internal$Types$$uniques_="
289+
problemName=IncompatibleMethTypeProblem
290+
},
291+
{
292+
matchName="scala.reflect.internal.Types.scala$reflect$internal$Types$$uniques"
293+
problemName=IncompatibleResultTypeProblem
294+
},
295+
{
296+
matchName="scala.reflect.internal.Types.scala$reflect$internal$Types$$uniques_="
297+
problemName=IncompatibleMethTypeProblem
298+
},
299+
{
300+
matchName="scala.reflect.internal.Types.scala$reflect$internal$Types$$uniques"
301+
problemName=MissingMethodProblem
302+
},
303+
{
304+
matchName="scala.reflect.internal.Types.scala$reflect$internal$Types$$uniques_="
305+
problemName=MissingMethodProblem
306+
},
307+
{
308+
matchName="scala.reflect.internal.HasFlags.isDeferredOrDefault"
309+
problemName=MissingMethodProblem
310+
},
311+
{
312+
matchName="scala.reflect.internal.HasFlags.isDeferredNotDefault"
313+
problemName=MissingMethodProblem
270314
}
271315
]
272316
}

0 commit comments

Comments
 (0)