This commit is contained in:
crusader 2017-12-23 03:47:33 +09:00
parent 88d853bdb7
commit 69601984c2
3 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,6 @@
// } // }
// public getName(): PropertyKeyType { // public getName(): PropertyKeyType {
// return this.getDeclaringClass().getName(); // return '';
// } // }
// } // }

View File

@ -1,8 +1,8 @@
export * from './accessible_object'; export * from './accessible_object';
export * from './annotated_element'; export * from './annotated_element';
export * from './annotation'; export * from './annotation';
export * from './class_constructor';
export * from './class'; export * from './class';
export * from './constructor';
export * from './executable'; export * from './executable';
export * from './field'; export * from './field';
export * from './member'; export * from './member';

View File

@ -1,6 +1,7 @@
import { import {
Annotation, Annotation,
Class, Class,
Constructor,
Field, Field,
Method, Method,
Parameter, Parameter,