- 15 11月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, dlsmith
-
- 09 11月, 2013 1 次提交
-
-
由 jlahoda 提交于
Summary: When emitting invokedynamic instruction, write pendingStatPos, if set, into the LineNumberTable. Invokedynamic itself does not set the pendingStatPos. Reviewed-by: jjg, jrose, ksrini, vromero
-
- 24 10月, 2013 1 次提交
-
-
由 rfield 提交于
Reviewed-by: jjg, ksrini
-
- 23 10月, 2013 1 次提交
-
-
由 rfield 提交于
Summary: lambda / bridged method-reference naming overhaul Reviewed-by: ksrini, briangoetz
-
- 22 10月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, dlsmith
-
- 21 10月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jfranck
-
- 20 10月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, dlsmith
-
- 19 10月, 2013 1 次提交
-
-
由 jjg 提交于
Reviewed-by: vromero, jlahoda
-
- 17 10月, 2013 1 次提交
-
-
由 jjg 提交于
Reviewed-by: ksrini
-
- 16 10月, 2013 2 次提交
- 15 10月, 2013 1 次提交
-
-
由 jjg 提交于
Reviewed-by: vromero
-
- 11 10月, 2013 1 次提交
-
-
由 rfield 提交于
8016320: Method reference in subinterface of type I.super::foo produces exception at runtime Summary: Now that the VM supports interface instance private methods, lambda methods and lambda bridges are always private. Access is now through invokespecial. Reviewed-by: vromero, jlahoda
-
- 28 9月, 2013 1 次提交
-
-
由 rfield 提交于
8025548: langtools test tools/javac/lambda/methodReference/BridgeMethod.java incorrectly assumes no other methods generated in lambda class Reviewed-by: vromero
-
- 27 9月, 2013 2 次提交
- 23 9月, 2013 1 次提交
-
-
由 alundblad 提交于
Summary: Static factory method ListBuffer.lb removed. Replaced by constructor calls. Reviewed-by: jfranck, jjg
-
- 22 9月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, briangoetz
-
- 13 9月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg Contributed-by: maurizio.cimadamore@oracle.com, vicente.romero@oracle.com
-
- 10 9月, 2013 3 次提交
-
-
由 jfranck 提交于
Reviewed-by: jfranck, jjg Contributed-by: NAndreas Lundblad <andreas.lundblad@oracle.com>
-
由 jlahoda 提交于
Summary: Fixing effectively final detection inside lambdas, small cleanup related to thrown types detection in lambdas Reviewed-by: mcimadamore, jjg
-
由 emc 提交于
Summary: Putback of the javac template test framework from the Lambda repository Reviewed-by: jjg Contributed-by: brian.goetz@oracle.com
-
- 09 9月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, jfranck
-
- 04 9月, 2013 2 次提交
-
-
由 vromero 提交于
8023549: Compiler emitting spurious errors when constructor reference type is inferred and explicit type arguments are supplied Reviewed-by: jjg, vromero Contributed-by: maurizio.cimadamore@oracle.com
-
由 vromero 提交于
Reviewed-by: jjg, vromero Contributed-by: maurizio.cimadamore@oracle.com
-
- 03 9月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: jjg, vromero Contributed-by: maurizio.cimadamore@oracle.com
-
- 29 8月, 2013 1 次提交
-
-
由 henryjen 提交于
Reviewed-by: briangoetz, jjg
-
- 16 8月, 2013 1 次提交
-
-
由 jlahoda 提交于
Summary: Producing individual errors for uncaught undeclared exceptions inside lambda expressions, rather than one error for the whole lambda Reviewed-by: mcimadamore
-
- 13 8月, 2013 1 次提交
-
-
由 mcimadamore 提交于
Summary: Javac incorrectly forgets about constant folding results within lambdas Reviewed-by: jjg, vromero
-
- 10 8月, 2013 1 次提交
-
-
由 vromero 提交于
Reviewed-by: mcimadamore
-
- 25 7月, 2013 3 次提交
-
-
由 mcimadamore 提交于
Summary: method reference overload check doesn't walk through type-variable receivers Reviewed-by: jjg
-
由 mcimadamore 提交于
Summary: check for annotation attributes should skip over synthetic methods Reviewed-by: jjg
-
由 mcimadamore 提交于
Summary: Assertion is causing javac to crash because of lack of support for arrays in intersection types Reviewed-by: jjg
-
- 17 7月, 2013 4 次提交
-
-
由 mcimadamore 提交于
Summary: Scope of deferred types is not copied correctly; postAttr analyzer should not run on stuck expressions Reviewed-by: jjg
-
由 mcimadamore 提交于
8008200: java/lang/Class/asSubclass/BasicUnit.java fails to compile Summary: Inference support should be more flexible w.r.t. nested method calls returning captured types Reviewed-by: jjg, vromero
-
由 mcimadamore 提交于
Summary: Type-checking of non-overloaded method references should be independent from target-type Reviewed-by: jjg, vromero
-
由 mcimadamore 提交于
Summary: Inference variables in 'throws' clause with no constraints should be inferred as RuntimeException Reviewed-by: jjg, vromero
-
- 11 7月, 2013 2 次提交
-
-
由 mcimadamore 提交于
Summary: Fix previously ignored test Reviewed-by: jjg, vromero
-
由 mcimadamore 提交于
8020010: Move lambda bridge creation from metafactory and VM to compiler Summary: langtools/javac component of the bridge support and MethodType vs. MethodHandle changes. Reviewed-by: jjg, vromero, briangoetz, forax Contributed-by: robert.field@oracle.com
-
- 05 7月, 2013 1 次提交
-
-
由 mcimadamore 提交于
8016060: Lambda isn't compiled with return statement Summary: Spurious error triggered during unnecessary recovery round Reviewed-by: jjg, vromero
-