Skip to content

Commit

Permalink
Added ForceMethodSuffix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Loncar committed Sep 4, 2014
1 parent fa56101 commit 8a5c837
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Defs/JavaScript/JsAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ public JsTypeAttribute(JsMode mode, string filename)
/// Treats the class as a native "Error" object and prevents smart exception throwing
/// </summary>
public bool NativeError { get { return _NativeError.GetValueOrDefault(); } set { _NativeError = value; } } public bool? _NativeError;

public bool ForceMethodSuffix { get { return _ForceMethodSuffix.GetValueOrDefault(); } set { _ForceMethodSuffix = value; } } public bool? _ForceMethodSuffix;

private void GoNative()
{
if (_NativeOverloads == null)
Expand Down Expand Up @@ -595,6 +598,7 @@ public partial class JsMethodAttribute : Attribute
/// </summary>
public string InlineCodeExpression { get; set; }

public bool ForceMethodSuffix { get { return _ForceMethodSuffix.GetValueOrDefault(); } set { _ForceMethodSuffix = value; } } public bool? _ForceMethodSuffix;
}
#endregion

Expand Down

0 comments on commit 8a5c837

Please sign in to comment.