From 89af5611ca919fe388d49aecd3d52b9fc728b297 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Thu, 4 Jul 2013 17:37:03 +0300 Subject: [PATCH] Fix string detection in Js::Returns. Because the EsprimaAdapter gives a string value to regex literals, which is different from nil received from Esprima itself, we'll have to check first for regex and after that for string. --- lib/jsduck/js/returns.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jsduck/js/returns.rb b/lib/jsduck/js/returns.rb index e985eb80..a770d4af 100644 --- a/lib/jsduck/js/returns.rb +++ b/lib/jsduck/js/returns.rb @@ -79,10 +79,10 @@ module JsDuck :this elsif boolean?(ast) "Boolean" - elsif string?(ast) - "String" elsif regexp?(ast) "RegExp" + elsif string?(ast) + "String" else :other end -- GitLab