-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move code related to TDD actions to core plugins.
- Loading branch information
Showing
72 changed files
with
2,090 additions
and
1,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...sis/src/com/python/pydev/analysis/refactoring/quick_fixes/DummyMarkerInfoForAnalysis.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package com.python.pydev.analysis.refactoring.quick_fixes; | ||
|
||
import org.python.pydev.core.IMarkerInfoForAnalysis; | ||
|
||
public class DummyMarkerInfoForAnalysis implements IMarkerInfoForAnalysis { | ||
|
||
public Object message; | ||
public Object flake8MessageId; | ||
public int length; | ||
public int offset; | ||
public Integer pyDevAnalysisType; | ||
public Object pyLintMessageId; | ||
|
||
public DummyMarkerInfoForAnalysis(int pyDevAnalysisType, int offset, int length) { | ||
this.pyDevAnalysisType = pyDevAnalysisType; | ||
this.offset = offset; | ||
this.length = length; | ||
} | ||
|
||
@Override | ||
public Object getPyLintMessageIdAttribute() { | ||
return pyLintMessageId; | ||
} | ||
|
||
@Override | ||
public Integer getPyDevAnalisysType() { | ||
return pyDevAnalysisType; | ||
} | ||
|
||
@Override | ||
public boolean hasPosition() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public int getOffset() { | ||
return offset; | ||
} | ||
|
||
@Override | ||
public int getLength() { | ||
return length; | ||
} | ||
|
||
@Override | ||
public void delete() { | ||
|
||
} | ||
|
||
@Override | ||
public Object getFlake8MessageId() { | ||
return flake8MessageId; | ||
} | ||
|
||
@Override | ||
public Object getMessage() { | ||
return message; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.