]> Lady’s Gitweb - Pisces/blobdiff - function.test.js
Add denseProxy, various collection.js improvements
[Pisces] / function.test.js
index a5c8311c13c3a1f861fd4c31d3c2c354eab84086..1b9ea74603c8f7ab0e91746fac70505b4f503494 100644 (file)
@@ -668,7 +668,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~", () => {
+  describe("()", () => {
     it("[[Call]] throws an error", () => {
       assertThrows(() => {
         createProxyConstructor({})();
@@ -713,7 +713,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~is[[.name]]", () => {
+  describe("().is[[.name]]", () => {
     it("[[GetOwnProperty]] defines the appropriate method", () => {
       assertNotStrictEquals(
         Object.getOwnPropertyDescriptor(
@@ -802,7 +802,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~length", () => {
+  describe("().length", () => {
     it("[[GetOwnProperty]] has the correct descriptor", () => {
       assertEquals(
         Object.getOwnPropertyDescriptor(
@@ -819,7 +819,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~name", () => {
+  describe("().name", () => {
     it("[[GetOwnProperty]] has the correct descriptor", () => {
       assertEquals(
         Object.getOwnPropertyDescriptor(
@@ -836,7 +836,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~prototype", () => {
+  describe("().prototype", () => {
     it("[[GetOwnProperty]] has the correct descriptor", () => {
       assertEquals(
         Object.getOwnPropertyDescriptor(
@@ -853,7 +853,7 @@ describe("createProxyConstructor", () => {
     });
   });
 
-  describe("~revocable", () => {
+  describe("().revocable", () => {
     it("[[Call]] produces a revocable proxy", () => {
       const obj = {};
       const proxyConstructor = createProxyConstructor({
This page took 0.221628 seconds and 4 git commands to generate.