1
0

javascript-hint.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. (function () {
  2. var Pos = CodeMirror.Pos;
  3. function forEach(arr, f) {
  4. for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]);
  5. }
  6. function arrayContains(arr, item) {
  7. if (!Array.prototype.indexOf) {
  8. var i = arr.length;
  9. while (i--) {
  10. if (arr[i] === item) {
  11. return true;
  12. }
  13. }
  14. return false;
  15. }
  16. return arr.indexOf(item) != -1;
  17. }
  18. function scriptHint(editor, keywords, getToken, options) {
  19. // Find the token at the cursor
  20. var cur = editor.getCursor(), token = getToken(editor, cur), tprop = token;
  21. token.state = CodeMirror.innerMode(editor.getMode(), token.state).state;
  22. // If it's not a 'word-style' token, ignore the token.
  23. if (!/^[\w$_]*$/.test(token.string)) {
  24. token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state,
  25. type: token.string == "." ? "property" : null};
  26. }
  27. // If it is a property, find out what it is a property of.
  28. while (tprop.type == "property") {
  29. tprop = getToken(editor, Pos(cur.line, tprop.start));
  30. if (tprop.string != ".") return;
  31. tprop = getToken(editor, Pos(cur.line, tprop.start));
  32. if (tprop.string == ')') {
  33. var level = 1;
  34. do {
  35. tprop = getToken(editor, Pos(cur.line, tprop.start));
  36. switch (tprop.string) {
  37. case ')': level++; break;
  38. case '(': level--; break;
  39. default: break;
  40. }
  41. } while (level > 0);
  42. tprop = getToken(editor, Pos(cur.line, tprop.start));
  43. if (tprop.type.indexOf("variable") === 0)
  44. tprop.type = "function";
  45. else return; // no clue
  46. }
  47. if (!context) var context = [];
  48. context.push(tprop);
  49. }
  50. return {list: getCompletions(token, context, keywords, options),
  51. from: Pos(cur.line, token.start),
  52. to: Pos(cur.line, token.end)};
  53. }
  54. CodeMirror.javascriptHint = function(editor, options) {
  55. return scriptHint(editor, javascriptKeywords,
  56. function (e, cur) {return e.getTokenAt(cur);},
  57. options);
  58. };
  59. function getCoffeeScriptToken(editor, cur) {
  60. // This getToken, it is for coffeescript, imitates the behavior of
  61. // getTokenAt method in javascript.js, that is, returning "property"
  62. // type and treat "." as indepenent token.
  63. var token = editor.getTokenAt(cur);
  64. if (cur.ch == token.start + 1 && token.string.charAt(0) == '.') {
  65. token.end = token.start;
  66. token.string = '.';
  67. token.type = "property";
  68. }
  69. else if (/^\.[\w$_]*$/.test(token.string)) {
  70. token.type = "property";
  71. token.start++;
  72. token.string = token.string.replace(/\./, '');
  73. }
  74. return token;
  75. }
  76. CodeMirror.coffeescriptHint = function(editor, options) {
  77. return scriptHint(editor, coffeescriptKeywords, getCoffeeScriptToken, options);
  78. };
  79. var stringProps = ("charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight " +
  80. "toUpperCase toLowerCase split concat match replace search").split(" ");
  81. var arrayProps = ("length concat join splice push pop shift unshift slice reverse sort indexOf " +
  82. "lastIndexOf every some filter forEach map reduce reduceRight ").split(" ");
  83. var funcProps = "prototype apply call bind".split(" ");
  84. var javascriptKeywords = ("break case catch continue debugger default delete do else false finally for function " +
  85. "if in instanceof new null return switch throw true try typeof var void while with").split(" ");
  86. var coffeescriptKeywords = ("and break catch class continue delete do else extends false finally for " +
  87. "if in instanceof isnt new no not null of off on or return switch then throw true try typeof until void while with yes").split(" ");
  88. function getCompletions(token, context, keywords, options) {
  89. var found = [], start = token.string;
  90. function maybeAdd(str) {
  91. if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str);
  92. }
  93. function gatherCompletions(obj) {
  94. if (typeof obj == "string") forEach(stringProps, maybeAdd);
  95. else if (obj instanceof Array) forEach(arrayProps, maybeAdd);
  96. else if (obj instanceof Function) forEach(funcProps, maybeAdd);
  97. for (var name in obj) maybeAdd(name);
  98. }
  99. if (context) {
  100. // If this is a property, see if it belongs to some object we can
  101. // find in the current environment.
  102. var obj = context.pop(), base;
  103. if (obj.type.indexOf("variable") === 0) {
  104. if (options && options.additionalContext)
  105. base = options.additionalContext[obj.string];
  106. base = base || window[obj.string];
  107. } else if (obj.type == "string") {
  108. base = "";
  109. } else if (obj.type == "atom") {
  110. base = 1;
  111. } else if (obj.type == "function") {
  112. if (window.jQuery != null && (obj.string == '$' || obj.string == 'jQuery') &&
  113. (typeof window.jQuery == 'function'))
  114. base = window.jQuery();
  115. else if (window._ != null && (obj.string == '_') && (typeof window._ == 'function'))
  116. base = window._();
  117. }
  118. while (base != null && context.length)
  119. base = base[context.pop().string];
  120. if (base != null) gatherCompletions(base);
  121. }
  122. else {
  123. // If not, just look in the window object and any local scope
  124. // (reading into JS mode internals to get at the local and global variables)
  125. for (var v = token.state.localVars; v; v = v.next) maybeAdd(v.name);
  126. for (var v = token.state.globalVars; v; v = v.next) maybeAdd(v.name);
  127. gatherCompletions(window);
  128. forEach(keywords, maybeAdd);
  129. }
  130. return found;
  131. }
  132. })();