currently we have ```ocaml let re = [%re "/a/" ] ``` It would be nice that we can do some basic checking to prevent bad things happen as below ```ocaml let re = [%re "a" ] ``` which will be compiled into ```js var re = a ```