This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
from 36a6e6a4fd Add missing package-info
new 30f0545366 Add missing javadoc
new ee2fb50488 Add missing package-info
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../groovy/classgen/AnnotationVisitor.java | 77 ++++++
.../groovy/classgen/AsmClassGenerator.java | 291 +++++++++++++++++++++
.../groovy/classgen/BytecodeExpression.java | 25 ++
.../groovy/classgen/BytecodeInstruction.java | 5 +
.../codehaus/groovy/classgen/BytecodeSequence.java | 15 ++
.../groovy/classgen/ClassCompletionVerifier.java | 49 ++++
.../codehaus/groovy/classgen/ClassGenerator.java | 18 +-
.../groovy/classgen/ClassGeneratorException.java | 11 +
.../groovy/classgen/DummyClassGenerator.java | 43 +++
.../groovy/classgen/EnumCompletionVisitor.java | 12 +
.../org/codehaus/groovy/classgen/EnumVisitor.java | 23 ++
.../codehaus/groovy/classgen/ExtendedVerifier.java | 41 +++
.../groovy/classgen/FinalVariableAnalyzer.java | 60 +++++
.../codehaus/groovy/classgen/GeneratorContext.java | 51 ++++
.../classgen/InnerClassCompletionVisitor.java | 20 ++
.../groovy/classgen/InnerClassVisitor.java | 36 +++
.../groovy/classgen/InnerClassVisitorHelper.java | 59 +++++
.../org/codehaus/groovy/classgen/ReturnAdder.java | 17 ++
.../groovy/classgen/VariableScopeVisitor.java | 95 +++++++
.../org/codehaus/groovy/classgen/Verifier.java | 168 ++++++++++++
.../groovy/classgen/VerifierCodeVisitor.java | 27 ++
.../org/codehaus/groovy/classgen/package-info.java | 38 +++
22 files changed, 1180 insertions(+), 1 deletion(-)
create mode 100644 src/main/java/org/codehaus/groovy/classgen/package-info.java