-
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add in a ClassFileParseOption for StaticImport so we can start cutting down on the ifdefs.
- Loading branch information
Showing
20 changed files
with
80 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,6 @@ Jeroen Frijters | |
[email protected] | ||
*/ | ||
using System; | ||
|
||
using IKVM.ByteCode; | ||
using IKVM.ByteCode.Decoding; | ||
|
||
|
@@ -31,6 +29,7 @@ namespace IKVM.Runtime | |
|
||
sealed partial class ClassFile | ||
{ | ||
|
||
internal sealed class ConstantPoolItemInvokeDynamic : ConstantPoolItem | ||
{ | ||
|
||
|
@@ -67,12 +66,8 @@ internal override void Resolve(ClassFile classFile, string[] utf8_cp, ClassFileP | |
internal override void Link(RuntimeJavaType thisType, LoadMode mode) | ||
{ | ||
lock (this) | ||
{ | ||
if (argTypeWrappers != null) | ||
{ | ||
return; | ||
} | ||
} | ||
|
||
var classLoader = thisType.ClassLoader; | ||
var args = classLoader.ArgJavaTypeListFromSig(descriptor, mode); | ||
|
@@ -98,20 +93,11 @@ internal RuntimeJavaType GetRetType() | |
return retTypeWrapper; | ||
} | ||
|
||
internal string Name | ||
{ | ||
get { return name; } | ||
} | ||
internal string Name => name; | ||
|
||
internal string Signature | ||
{ | ||
get { return descriptor; } | ||
} | ||
internal string Signature => descriptor; | ||
|
||
internal ushort BootstrapMethod | ||
{ | ||
get { return bootstrapMethodAttributeIndex; } | ||
} | ||
internal ushort BootstrapMethod => bootstrapMethodAttributeIndex; | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ internal override ConstantType GetConstantType() | |
{ | ||
return ConstantType.LiveObject; | ||
} | ||
|
||
} | ||
|
||
} | ||
|
Oops, something went wrong.