Вход Регистрация
Файл: wysiwyg/live/scripts/common/codemirror/lib/util/javascript-hint.js
Строк: 150
<?php
(function () {
  function forEach(
arrf) {
    for (var 
0arr.lengthe; ++if(arr[i]);
  }
  
  function 
arrayContains(arritem) {
    if (!Array.
prototype.indexOf) {
      var 
arr.length;
      while (
i--) {
        if (
arr[i] === item) {
          return 
true;
        }
      }
      return 
false;
    }
    return 
arr.indexOf(item) != -1;
  }
  
  
CodeMirror.javascriptHint = function(editor) {
    
// Find the token at the cursor
    
var cur editor.getCursor(), token editor.getTokenAt(cur), tprop token;
    
// If it's not a 'word-style' token, ignore the token.
    
if (!/^[w$_]*$/.test(token.string)) {
      
token tprop = {startcur.chendcur.chstring""statetoken.state,
                       
classNametoken.string == "." "property" null};
    }
    
// If it is a property, find out what it is a property of.
    
while (tprop.className == "property") {
      
tprop editor.getTokenAt({linecur.linechtprop.start});
      if (
tprop.string != ".") return;
      
tprop editor.getTokenAt({linecur.linechtprop.start});
      if (!
context) var context = [];
      
context.push(tprop);
    }
    return {list: 
getCompletions(tokencontext),
            
from: {linecur.linechtoken.start},
            
to: {linecur.linechtoken.end}};
  }

  var 
stringProps = ("charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight " +
                     
"toUpperCase toLowerCase split concat match replace search").split(" ");
  var 
arrayProps = ("length concat join splice push pop shift unshift slice reverse sort indexOf " +
                    
"lastIndexOf every some filter forEach map reduce reduceRight ").split(" ");
  var 
funcProps "prototype apply call bind".split(" ");
  var 
keywords = ("break case catch continue debugger default delete do else false finally for function " +
                  
"if in instanceof new null return switch throw true try typeof var void while with").split(" ");

  function 
getCompletions(tokencontext) {
    var 
found = [], start token.string;
    function 
maybeAdd(str) {
      if (
str.indexOf(start) == && !arrayContains(foundstr)) found.push(str);
    }
    function 
gatherCompletions(obj) {
      if (
typeof obj == "string") forEach(stringPropsmaybeAdd);
      else if (
obj instanceof Array) forEach(arrayPropsmaybeAdd);
      else if (
obj instanceof Function) forEach(funcPropsmaybeAdd);
      for (var 
name in objmaybeAdd(name);
    }

    if (
context) {
      
// If this is a property, see if it belongs to some object we can
      // find in the current environment.
      
var obj context.pop(), base;
      if (
obj.className == "variable")
        
base window[obj.string];
      else if (
obj.className == "string")
        
base "";
      else if (
obj.className == "atom")
        
base 1;
      while (
base != null && context.length)
        
base base[context.pop().string];
      if (
base != nullgatherCompletions(base);
    }
    else {
      
// If not, just look in the window object and any local scope
      // (reading into JS mode internals to get at the local variables)
      
for (var token.state.localVarsvv.nextmaybeAdd(v.name);
      
gatherCompletions(window);
      forEach(
keywordsmaybeAdd);
    }
    return 
found;
  }
})();
?>
Онлайн: 0
Реклама