-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from treblereel/development
Development
- Loading branch information
Showing
29 changed files
with
868 additions
and
780 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 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
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
36 changes: 22 additions & 14 deletions
36
processor/src/main/resources/templates/resources/export.ftlh
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 |
---|---|---|
@@ -1,25 +1,33 @@ | ||
<#if !isNative> | ||
/** | ||
* @fileoverview | ||
* @suppress {missingProperties} | ||
*/ | ||
</#if> | ||
goog.module('${module}$GWT3Export'); | ||
|
||
const EXPORT = goog.require('${target}'); | ||
|
||
<#if isNative> | ||
goog.exportSymbol('${type}', EXPORT); | ||
<#else> | ||
const j_l_Object = goog.require('java.lang.Object$impl'); | ||
const $Util = goog.require('nativebootstrap.Util$impl'); | ||
|
||
class _EXPORT extends EXPORT { | ||
constructor() { | ||
EXPORT.$clinit(); | ||
super(); | ||
this.${ctor}(); | ||
<#list methods as method> | ||
goog.exportSymbol('${type}.<#if !method.isStatic>prototype.</#if>${method.name}', EXPORT.<#if !method.isStatic>prototype.</#if>${method.mangleName}); | ||
</#list> | ||
<#else> | ||
const classProxy = new Proxy(EXPORT, { | ||
construct(target, args) { | ||
return EXPORT.$create__(); | ||
} | ||
} | ||
|
||
$Util.$setClassMetadata(_EXPORT, '${module}'); | ||
goog.exportSymbol('${type}', _EXPORT); | ||
</#if> | ||
}); | ||
|
||
EXPORT.$clinit(); | ||
goog.exportSymbol('${type}', classProxy); | ||
<#list methods as method> | ||
goog.exportSymbol('${type}.<#if !method.isStatic>prototype.</#if>${method.name}', EXPORT.<#if !method.isStatic>prototype.</#if>${method.mangleName}); | ||
<#if method.isStatic> | ||
goog.exportProperty(EXPORT, '${method.name}', EXPORT.${method.mangleName}); | ||
<#else> | ||
goog.exportSymbol('${type}.prototype.${method.name}', classProxy.prototype.${method.mangleName}); | ||
</#if> | ||
</#list> | ||
</#if> |
Oops, something went wrong.