-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vincent Rasquier
committed
Dec 13, 2017
1 parent
3cca9a9
commit d16802a
Showing
9 changed files
with
128 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package asm | ||
|
||
// FieldVisitor a visitor to visit a Java field. The methods of this class must be called in the following order: | ||
// ( <tt>visitAnnotation</tt> | <tt>visitTypeAnnotation</tt> | <tt>visitAttribute</tt> )* | ||
// <tt>visitEnd</tt>. | ||
type FieldVisitor interface { | ||
VisitAnnotation(descriptor string, visible bool) AnnotationVisitor | ||
VisitTypeAnnotation(typeRef int, typePath interface{}, descriptor string, visible bool) AnnotationVisitor //TypePath | ||
VisitAttribute(attribute *Attribute) | ||
VisitEnd() | ||
} |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package asm | ||
|
||
// ModuleVisitor a visitor to visit a Java module. The methods of this class must be called in the following | ||
// order: <tt>visitMainClass</tt> | ( <tt>visitPackage</tt> | <tt>visitRequire</tt> | | ||
// <tt>visitExport</tt> | <tt>visitOpen</tt> | <tt>visitUse</tt> | <tt>visitProvide</tt> )* | ||
// <tt>visitEnd</tt>. | ||
type ModuleVisitor interface { | ||
VisitMainClass(mainClass string) | ||
VisitPackage(packaze string) | ||
VisitRequire(module string, access int, version string) | ||
VisitExport(packaze string, access int, modules ...string) | ||
VisitOpen(packaze string, access int, modules ...string) | ||
VisitUse(service string) | ||
VisitProvide(service string, providers ...string) | ||
VisitEnd() | ||
} |
File renamed without changes.
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