5

この種のコードをオートコンプリートできるIDEを知っていますか?

私はここにjavascriptクラスジェネレータを持っています:

(function() {
    var core = {
        bind : function(method, scope) {
            if (!( method instanceof Function))
                throw new TypeError("Function needed as method.");
            if ( typeof (scope) != "object")
                throw new TypeError("Object needed as scope.");
            return function() {
                return method.apply(scope, arguments);
            };
        },
        require : function(source) {
            if ( typeof (source) != "object" || !source)
                throw new TypeError("Object needed as source.");
            for (var property in source)
                if (source.hasOwnProperty(property) && !this.prototype.hasOwnProperty(property))
                    this.prototype[property] = source[property];
        },
        override : function(source) {
            if ( typeof (source) != "object" || !source)
                throw new TypeError("Object needed as source.");
            for (var property in source)
                if (source.hasOwnProperty(property))
                    this.prototype[property] = source[property];
        },
        extend : function(source) {
            var superClass = this;
            var newClass = source.hasOwnProperty("constructor") ? source.constructor : function() {
                superClass.apply(this, arguments);
            };
            newClass.superClass = superClass;

            var superClone = function() {
            };
            superClone.prototype = superClass.prototype;
            newClass.prototype = new superClone();
            newClass.prototype.constructor = newClass;

            if (source)
                newClass.override(source);
            return newClass;
        }
    };

    core.require.call(Function, core);

    Function.create = function (source){
        var newClass = source.hasOwnProperty("constructor") ? source.constructor : function() {};
        newClass.override(source);
        return newClass;
    };
})(); 

これらのサンプルクラスのコード補完(コメントに記述)が必要です:

//Function.prototype: bind, require, override, extend
//Function.create

var A = Function.create({ //offer Function.[create]
    test: function (){
        console.log("a");
    }
});

//A is a Function instance
//A.prototype: test

var B = A.extend({ //offer A.[extend]
    test: function (){
        console.log("b");
    },
    test2: function (){
        console.log("b2");
    }
});

//B is a Function instance
//B.prototype inherits from A.prototype
//B.prototype.test overrides A.prototype.test

var F = Function.create({ //offer Function.[create]
    getA: function (){
        return new A();
    },
    getB: function (){
        return new B();
    }
});
//F is a Function instance
//F.prototype getA, getB returns A and B instances

var f = new F(); //offer [F]
//f inherits from F.prototype
var a = f.getA(); //offer f.[getA]
//a inherits from A.prototype
var b = f.getB(); //offer f.[getB]
//b inhertis from B.prototype

a.test(); //offer a.[test]
b.test(); //offer b.[test]
b.test2(); //offer b.[test2]

したがって、これらの関数がFunction.prototypeに存在し、これらの関数がFunctionインスタンスを作成し、それらのインスタンスのプロトタイプに書き込んでいることを、IDEに何らかの方法で通知する必要があります。これは、jsdocのように私のコードの手動インデックス付けでのみ可能ですが、たとえば継承を説明するには十分ではありません。したがって、少なくともjsの継承を処理でき、このインデックスを自動的に作成するプラグインを作成できるIDEが必要です。(プラグインも継承を処理できるかもしれませんが、そのインデックス作成が正確にどのように機能するかはわかりません...)

どのIDEがそれを実行できますか(そしてどのように)?

4

2 に答える 2

2

Resharper 6がインストールされたWebStormやVisualStudioのようなものを使用すると、すべてのオブジェクトのすべてのプロトタイプのリストが作成され、それを使用できます。特に有用ではなく、お勧めしません。しかし、何もないよりはましです。

于 2012-09-16T15:31:47.820 に答える
2

解決策1:

Eclipseでは、javascriptインデクサーはWeb Tools Platform / JavascriptDevelopmentToolsの一部であることがわかりました。ソースコードはこちらです。開発者は、InferEngineは簡単に拡張できるので、Eclipseプラグインを作成できると書いています。その場合、このブログは本当に-本当に-本当に便利です。JSDTを拡張する方法についてのすばらしい記事があり、JSDT開発者も支援できます。残念ながら、別の解決策があれば、そのようなものを作成する時間はあまりありません。

解決策2:

周りを見回してみたところ、本当の問題は、JSDOC 3がNetbeansでも、EclipseJSDTとAptanaでも完全にサポートされていないことです。JSDOC 3をサポートしているIDEはJetbrainsWebStormだけなので、これを使用します。(Resharper for Visual Studioはテストしていませんが、JetBrains製品でもあるため、おそらく機能します。)

webstormでのjsdoc3の元の例:

/** @class*/
var A = Function.create(//offer Function.[create] -> OK!
/** @lends A.prototype*/
{ 
    test: function (){
        console.log("a");
    },
    testA: function (){
        console.log("a2");
    }
});

/** @class*/
/** @extends A*/
var B = A.extend(//offer A.[extend] -> OK!
/** @lends B.prototype*/
{ 
    test: function (){
        console.log("b");
    },
    testB: function (){
        console.log("b2");
    }
});

/** @class*/
var F = Function.create(//offer Function.[create]  -> OK!
/** @lends F.prototype*/
{ 
    /** @returns A*/
    getA: function (){
        return new A();
    },
    /** @returns B*/
    getB: function (){
        return new B();
    }
});

var f = new F();
f.getA().test(); //offer f.[getA], offer f.getA().[test] -> OK
f.getA().testA(); //offer f.[getA], offer f.getA().[testA] -> OK
f.getB().test(); //offer f.[getB], offer f.getB().[test] -> OK
f.getB().testA(); //offer f.[getB], offer f.getB().[testA] -> OK
f.getB().testB(); //offer f.[getB], offer f.getB().[testB] -> OK
于 2012-09-18T02:01:53.333 に答える