105 Public method to return the supported language names. |
105 Public method to return the supported language names. |
106 |
106 |
107 @return list of languanges supported |
107 @return list of languanges supported |
108 @rtype list of str |
108 @rtype list of str |
109 """ |
109 """ |
110 return list(self.__supportedLanguages.keys()) + ["MicroPython"] |
110 return list(self.__supportedLanguages) + ["MicroPython"] |
111 |
111 |
112 def removeLanguage(self, lang): |
112 def removeLanguage(self, lang): |
113 """ |
113 """ |
114 Public method to remove the language from syntax check. |
114 Public method to remove the language from syntax check. |
115 |
115 |