aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go b/Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go
deleted file mode 100644
index c24409de1..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package otto
-
-import (
- "strconv"
-)
-
-func (runtime *_runtime) newBooleanObject(value Value) *_object {
- return runtime.newPrimitiveObject("Boolean", toValue_bool(toBoolean(value)))
-}
-
-func booleanToString(value bool) string {
- return strconv.FormatBool(value)
-}