Yurdik Cervantes
Yurdik Cervantes
Thanks a lot for this plug-in. It saves a lot work, avoiding the need of making new plug-ins for every external command integration. I am trying to integrate the comand...
The tokens are sometimes not needed. But they are fixed in the regex.
String sections like this one: ' 2 02\n\n10' are interpreted like a date. But the numbers are really in different lines.
Additional fixes to #7
When searching a value that has accents, the query doesn't find it. Ex: category_ids = ProductCategory.search(['name','=','Institución']) After an RPC debug i saw this encoded value: Instituci\xf3n I tried with this...
A little problem translating array initializers. This Java code: ``` java public class XParser extends BaseParser { private static final char[] MYCHARARR = new char[] { 'a', 'b', 'c', 'd'...
Here is another case. Is there anyway we can help to fix them ? ``` java if (a > 1) { # comment from java code (maybe a todo) }...
Here is another one. I don't know if this comes from ANTLR, or is something that could be solved here. The Java code: ``` java if (condition): myArr[count++] = index;...
Hello, I'll put some feed back here to some missing conversions. I hope it can be useful. A java code like this: ``` java int amountRead; while((amountRead = is.read(buffer, 0,...
I'd tried to run collect_results.py and get this error: No module named lib.parse_version There is another dependency not listed on requirements.txt ? Best regards.