Skip to content

Commit 489e6c2

Browse files
committed
Removed "UseStrictEquality" option.
Use "EqualsStrict" and "InequalsStrict" methods. Added many statements and expressions.
1 parent 8878474 commit 489e6c2

File tree

3 files changed

+189
-58
lines changed

3 files changed

+189
-58
lines changed

CSharpToJavaScript/APIs/JS/GlobalObject.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ public static bool InequalsStrict(dynamic left, dynamic right)
1414
{
1515
return left != right;
1616
}
17+
1718
}

CSharpToJavaScript/CSTOJSOptions.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,6 @@ public class CSTOJSOptions
5555
/// </value>
5656
public bool NormalizeWhitespace { get; set; } = false;
5757

58-
/// <summary>
59-
/// Replace '<c>==</c>' with '<c>===</c>' and '<c>!=</c>' with '<c>!==</c>'.
60-
/// </summary>
61-
/// <value>
62-
/// Default: <c>false</c>
63-
/// </value>
64-
public bool UseStrictEquality { get; set; } = false;
65-
6658
/// <summary>
6759
/// Translate current <see cref="FileData" />. If false, walker will not be called.
6860
/// </summary>

0 commit comments

Comments
 (0)