コード例 #1
0
ファイル: Operators.cs プロジェクト: zhangaz1/IronJS
 /// <summary>
 /// Implements the binary `!==` operator.
 /// </summary>
 public static bool notSame(BoxedValue l, BoxedValue r)
 {
     return(!Operators.same(l, r));
 }
コード例 #2
0
ファイル: Operators.cs プロジェクト: zhangaz1/IronJS
 /// <summary>
 /// Implements the binary `!=` operator.
 /// </summary>
 public static bool notEq(BoxedValue l, BoxedValue r)
 {
     return(!Operators.eq(l, r));
 }