Browse Source

Positive / negative infinity are members of the Number class in AS3 (#5881)

Jeff Ward 8 years ago
parent
commit
41b2e1e7bf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/generators/genas3.ml

+ 2 - 2
src/generators/genas3.ml

@@ -556,8 +556,8 @@ and gen_field_access ctx t s =
 	let field c =
 		match fst c.cl_path, snd c.cl_path, s with
 		| [], "Math", "NaN"
-		| [], "Math", "NEGATIVE_INFINITY"
-		| [], "Math", "POSITIVE_INFINITY"
+		| [], "Number", "NEGATIVE_INFINITY"
+		| [], "Number", "POSITIVE_INFINITY"
 		| [], "Math", "isFinite"
 		| [], "Math", "isNaN"
 		| [], "Date", "now"