[ECORE] - Marks for interface Resource, parse method. (#38543)

* Added ecore types.

* Little fix.

* Little marks.

* Fixed default export.

* Import/Export marks.

* Fixed default export.

* Marks.

* Test.

* Test.

* -Deleted wrong def eContent in EObject
-Marks in EPackage and EPackageRegistry

* Interface Resource, parse, second parameter 'loader' has to be optional.
This commit is contained in:
michael-whi
2019-09-26 10:52:24 -07:00
committed by Michael Crane
parent c5f1369cbd
commit ca615dcc7a
+1 -1
View File
@@ -117,7 +117,7 @@ export interface Resource extends EObject {
clear: () => EList;
each: (iterator: (value: any, key: any, list: EList) => void, context?: any) => void;
save: (callback: () => void, options: any) => void;
parse: (data: EObject, loader: () => void) => any;
parse: (data: EObject, loader?: () => void) => any;
remove: () => void;
rev: string;
load: (res: any) => void;