aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index c06d0a0d..385837a5 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -118,7 +118,7 @@ function isJSVar(ident) {
}
function isLocalVar(ident) {
- return ident[0] == '$';
+ return ident[0] === '$';
}
function isStructPointerType(type) {