Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_langtools
提交
6beec91b
D
dragonwell8_langtools
项目概览
openanolis
/
dragonwell8_langtools
通知
0
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_langtools
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6beec91b
编写于
6月 02, 2008
作者:
T
tbell
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
4dd2a905
236f5bc2
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
181 addition
and
7 deletion
+181
-7
src/share/classes/com/sun/tools/javac/code/Types.java
src/share/classes/com/sun/tools/javac/code/Types.java
+5
-1
src/share/classes/com/sun/tools/javac/comp/Attr.java
src/share/classes/com/sun/tools/javac/comp/Attr.java
+8
-5
src/share/classes/com/sun/tools/javac/comp/Check.java
src/share/classes/com/sun/tools/javac/comp/Check.java
+2
-0
src/share/classes/com/sun/tools/javac/comp/Resolve.java
src/share/classes/com/sun/tools/javac/comp/Resolve.java
+1
-1
test/tools/javac/generics/6677785/T6677785.java
test/tools/javac/generics/6677785/T6677785.java
+35
-0
test/tools/javac/generics/6677785/T6677785.out
test/tools/javac/generics/6677785/T6677785.out
+2
-0
test/tools/javac/generics/T6507024.java
test/tools/javac/generics/T6507024.java
+37
-0
test/tools/javac/staticImport/6665223/T6665223.java
test/tools/javac/staticImport/6665223/T6665223.java
+31
-0
test/tools/javac/staticImport/6665223/pkg/A.java
test/tools/javac/staticImport/6665223/pkg/A.java
+31
-0
test/tools/javac/staticImport/6665223/pkg/B.java
test/tools/javac/staticImport/6665223/pkg/B.java
+29
-0
未找到文件。
src/share/classes/com/sun/tools/javac/code/Types.java
浏览文件 @
6beec91b
...
...
@@ -301,7 +301,11 @@ public class Types {
:
isSubtypeUnchecked
(
elemtype
(
t
),
elemtype
(
s
),
warn
);
}
else
if
(
isSubtype
(
t
,
s
))
{
return
true
;
}
else
if
(!
s
.
isRaw
())
{
}
else
if
(
t
.
tag
==
TYPEVAR
)
{
return
isSubtypeUnchecked
(
t
.
getUpperBound
(),
s
,
warn
);
}
else
if
(!
s
.
isRaw
())
{
Type
t2
=
asSuper
(
t
,
s
.
tsym
);
if
(
t2
!=
null
&&
t2
.
isRaw
())
{
if
(
isReifiable
(
s
))
...
...
src/share/classes/com/sun/tools/javac/comp/Attr.java
浏览文件 @
6beec91b
...
...
@@ -454,6 +454,8 @@ public class Attr extends JCTree.Visitor {
void
attribTypeVariables
(
List
<
JCTypeParameter
>
typarams
,
Env
<
AttrContext
>
env
)
{
for
(
JCTypeParameter
tvar
:
typarams
)
{
TypeVar
a
=
(
TypeVar
)
tvar
.
type
;
a
.
tsym
.
flags_field
|=
UNATTRIBUTED
;
a
.
bound
=
Type
.
noType
;
if
(!
tvar
.
bounds
.
isEmpty
())
{
List
<
Type
>
bounds
=
List
.
of
(
attribType
(
tvar
.
bounds
.
head
,
env
));
for
(
JCExpression
bound
:
tvar
.
bounds
.
tail
)
...
...
@@ -464,13 +466,14 @@ public class Attr extends JCTree.Visitor {
// java.lang.Object.
types
.
setBounds
(
a
,
List
.
of
(
syms
.
objectType
));
}
a
.
tsym
.
flags_field
&=
~
UNATTRIBUTED
;
}
}
void
attribBounds
(
List
<
JCTypeParameter
>
typarams
,
Env
<
AttrContext
>
env
)
{
for
(
JCTypeParameter
tvar
:
typarams
)
chk
.
checkNonCyclic
(
tvar
.
pos
(),
(
TypeVar
)
tvar
.
type
);
attribStats
(
typarams
,
env
);
}
void
attribBounds
(
List
<
JCTypeParameter
>
typarams
)
{
for
(
JCTypeParameter
typaram
:
typarams
)
{
Type
bound
=
typaram
.
type
.
getUpperBound
();
if
(
bound
!=
null
&&
bound
.
tsym
instanceof
ClassSymbol
)
{
...
...
@@ -581,7 +584,7 @@ public class Attr extends JCTree.Visitor {
try
{
chk
.
checkDeprecatedAnnotation
(
tree
.
pos
(),
m
);
attribBounds
(
tree
.
typarams
,
env
);
attribBounds
(
tree
.
typarams
);
// If we override any other methods, check that we do so properly.
// JLS ???
...
...
@@ -2689,7 +2692,7 @@ public class Attr extends JCTree.Visitor {
chk
.
validateAnnotations
(
tree
.
mods
.
annotations
,
c
);
// Validate type parameters, supertype and interfaces.
attribBounds
(
tree
.
typarams
,
env
);
attribBounds
(
tree
.
typarams
);
chk
.
validateTypeParams
(
tree
.
typarams
);
chk
.
validate
(
tree
.
extending
);
chk
.
validate
(
tree
.
implementing
);
...
...
src/share/classes/com/sun/tools/javac/comp/Check.java
浏览文件 @
6beec91b
...
...
@@ -1486,6 +1486,8 @@ public class Check {
private
void
checkNonCyclic1
(
DiagnosticPosition
pos
,
Type
t
,
Set
<
TypeVar
>
seen
)
{
final
TypeVar
tv
;
if
(
t
.
tag
==
TYPEVAR
&&
(
t
.
tsym
.
flags
()
&
UNATTRIBUTED
)
!=
0
)
return
;
if
(
seen
.
contains
(
t
))
{
tv
=
(
TypeVar
)
t
;
tv
.
bound
=
new
ErrorType
();
...
...
src/share/classes/com/sun/tools/javac/comp/Resolve.java
浏览文件 @
6beec91b
...
...
@@ -228,7 +228,7 @@ public class Resolve {
// another symbol which is a member of `site'
// (because, if it is overridden, `sym' is not strictly
// speaking a member of `site'.)
(
sym
.
kind
!=
MTH
||
sym
.
isConstructor
()
||
(
sym
.
kind
!=
MTH
||
sym
.
isConstructor
()
||
sym
.
isStatic
()
||
((
MethodSymbol
)
sym
).
implementation
(
site
.
tsym
,
types
,
true
)
==
sym
);
default
:
// this case includes erroneous combinations as well
return
isAccessible
(
env
,
site
);
...
...
test/tools/javac/generics/6677785/T6677785.java
0 → 100644
浏览文件 @
6beec91b
/*
* Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/*
* @test
* @bug 6677785
* @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors
* @author Maurizio Cimadamore
* @compile/fail/ref=T6677785.out -XDstdout -XDrawDiagnostics T6677785.java
*/
public
class
T6677785
<
E
extends
T
,
T
extends
E
>
{
T6677785
()
{}
T6677785
(
E
e
)
{}
T6677785
(
E
e
,
T
t
)
{}
}
test/tools/javac/generics/6677785/T6677785.out
0 → 100644
浏览文件 @
6beec91b
T6677785.java:31:23: compiler.err.cyclic.inheritance: E
1 error
test/tools/javac/generics/T6507024.java
0 → 100644
浏览文件 @
6beec91b
/*
* Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/*
* @test
* @bug 6507024
* @summary unchecked conversion between arrays fails after capture conversion
* @author Maurizio Cimadamore
*
* @compile T6507024.java
*/
public
class
T6507024
<
T
>
{
<
Z
>
void
m
(
T6507024
<
Z
>[]
results
)
{
T6507024
<
Z
>[]
r
=
results
.
getClass
().
cast
(
null
);
}
}
test/tools/javac/staticImport/6665223/T6665223.java
0 → 100644
浏览文件 @
6beec91b
/*
* Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/*
* @test
* @bug 6665223
* @summary Static import of inherited protected method causes compiler exception
* @author Maurizio Cimadamore
*
* @compile pkg/A.java
*/
test/tools/javac/staticImport/6665223/pkg/A.java
0 → 100644
浏览文件 @
6beec91b
/*
* Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package
pkg
;
import
static
pkg
.
B
.
b
;
class
A
{
public
static
void
main
(
String
[]
args
)
{
b
();
}
}
test/tools/javac/staticImport/6665223/pkg/B.java
0 → 100644
浏览文件 @
6beec91b
/*
* Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package
pkg
;
class
B
extends
B2
{}
abstract
class
B2
{
protected
static
void
b
()
{}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录