Jsにはクラスがないので正確ではないけど気にしない
Javascriptのクラスの宣言は主に
- var Hoge = function(){}
- function Hoge() {}
の2通りがある
| ;; js3-mode | |
| (autoload 'js3-mode "js3" nil t) | |
| (add-to-list 'auto-mode-alist '("\\.js$" . js3-mode)) | |
| (custom-set-variables | |
| ;; Your init file should contain only one such instance. | |
| ;; If there is more than one, they won't work right. | |
| '(js3-indent-level 4) | |
| '(js3-auto-indent-p t) | |
| '(js3-indent-on-enter-key t) | |
| '(js3-enter-indents-newline t) |