tests: error_syntax errors on `? now
[nit.git] / contrib / neo_doxygen / src / neo_doxygen.nit
index 431809c..30421eb 100644 (file)
@@ -62,7 +62,7 @@ class NeoDoxygenJob
                loop
                        for f in list_files(dir) do
                                var path = dir/f
-                               if path.file_stat.is_dir then
+                               if path.file_stat.as(not null).is_dir then
                                        directories.push(path)
                                else if f.has_suffix(".xml") and f != "index.xml" then
                                        reader.read(path)
@@ -199,7 +199,7 @@ class NeoDoxygenCommand
                end
                option_context.parse(args)
 
-               var errors = option_context.get_errors
+               var errors = option_context.errors
                var rest = option_context.rest
 
                if errors.is_empty and not opt_help.value and rest.length != 2 then