You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jasongin Thanks for quick #269 fix.
But I have found several issues:
Wrong comment for JSExportAttribute. You didn't add JSExcludeAttribute. Misprint publci.
/// When applied to an assembly, all public types in the assembly are exported, unless excluded
/// by another . When applied to a publci type, all public members
Some issues in IsExported(ISymbol symbol) method.
Please test the code:
[assembly: JSExport]
namespace Aspose.Words
{
// Raises an exception.
internal class Class1
{
}
public class Class2
{
// Is exported.
[JSExport(false)]
public void ExportFalse()
{
}
[JSExport(true)]
public void ExportTrue()
{
}
}
}
The text was updated successfully, but these errors were encountered:
@jasongin Thanks for quick #269 fix.
But I have found several issues:
Wrong comment for JSExportAttribute. You didn't add JSExcludeAttribute. Misprint publci.
/// When applied to an assembly, all public types in the assembly are exported, unless excluded
/// by another . When applied to a publci type, all public members
Some issues in IsExported(ISymbol symbol) method.
Please test the code:
The text was updated successfully, but these errors were encountered: