Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Verble <ben.verble@nike.com>2016-01-28 23:15:36 +0300
committerBen Verble <ben.verble@nike.com>2016-01-28 23:15:36 +0300
commit413c681f5c76039d056f4e0fd0704ba6c8dd9b20 (patch)
tree724478368a1fe12172b6bf2d0300928a5104a65f /README.md
parent7a51248b784513acc07454fdf02e14c8d0c06309 (diff)
add note about const to readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2e1a89a..fbb30a1 100644
--- a/README.md
+++ b/README.md
@@ -146,6 +146,9 @@ Variables inside functions can not be changed by rewire. This is constrained by
})()
```
+**const**
+Rewire does not work with const [see this issue](https://github.com/jhnns/rewire/issues/79)
+
**Modules that export primitives**<br>
rewire is not able to attach the `__set__`- and `__get__`-method if your module is just exporting a primitive. Rewiring does not work in this case.