0.1.6.1
  1. 95bd903 Issue 5735. Fix for 'export' without 'import' by scheglov@google.com · 13 years ago
  2. 852affb Report ~/ warning only when both arguments are integers by scheglov@google.com · 13 years ago
  3. a1f8e00 Lower ~/ priority from WARNING to INFO by scheglov@google.com · 13 years ago
  4. 4c0b34b Issue 5652. Suggest to use effective integer division ~/, warning and Quick Fix. by scheglov@google.com · 13 years ago
  5. 8dbff1e Ignore 'dart-ext:' scheme, allow 'native' in such files by scheglov@google.com · 13 years ago
  6. bf3c4d2 Issue 5719. There are no warning for operator-() and numberic return anymore. by scheglov@google.com · 13 years ago
  7. af60488 Fix for cascade sections SourceInfo by scheglov@google.com · 13 years ago
  8. 17fc654 Issue 5628. Quick fixes should suggest to use existing element with close name by scheglov@google.com · 13 years ago
  9. 3368bdb Issue 5621. Fix for infinite cycle during incomplete switch parsing by scheglov@google.com · 13 years ago
  10. 29b8826 Issue 5508. Fix for parsing cascade after conditional expression by scheglov@google.com · 13 years ago
  11. 2f0b901 Fix for field resolution for cascade, tests for ensure this by scheglov@google.com · 13 years ago
  12. c3fc4e9 Issue 5588. Don't report errors when preProcessLibraryDirectives() by scheglov@google.com · 13 years ago
  13. 6b5bdde Fix NPT when visiting qualifier in property access by danrubel@google.com · 13 years ago
  14. fddbc47 Minor bug fix Review URL: https://codereview.chromium.org//11034012 by brianwilkerson@google.com · 13 years ago
  15. be83083 Dart analyzer fixes to improve pluggability. by pquitslund@google.com · 13 years ago
  16. 6d1d55c Report error for non-const map literals used as statements (issue 5299) by brianwilkerson@google.com · 13 years ago
  17. 8855e81 Additional fixes for cascades (issue 5146) by brianwilkerson@google.com · 13 years ago
  18. 112281a Issue 3968. Report error if cycle in redirecting factory constructors by scheglov@google.com · 13 years ago
  19. c45dd53 Remove support for impossible AST structure (and a couple of warnings) by brianwilkerson@google.com · 13 years ago
  20. 27c9cf7 Report escaped newlines in string literals (issue 5296) by brianwilkerson@google.com · 13 years ago
  21. fa6bafb Fix to exclude patch files from search results (dartbug.com/5492). by pquitslund@google.com · 13 years ago
  22. c7d232b Fix the build Review URL: https://codereview.chromium.org//10977081 by brianwilkerson@google.com · 13 years ago
  23. 4d64521 First step toward fixing cascades (issue 5062) by brianwilkerson@google.com · 13 years ago
  24. dd0a0b3 Issue 5350. Type variable should be accessible in instance field by scheglov@google.com · 13 years ago
  25. 6ad979a Virtual filesystem support for dart_analyzer. by pquitslund@google.com · 13 years ago
  26. a7a4a44 Issue 5447. Wern when concrete class has unimplemented members by scheglov@google.com · 13 years ago
  27. c1be0e7 Parse and report error for const parameters (issue 5289) by brianwilkerson@google.com · 13 years ago
  28. 344cc4b Quick fixes 'Create class' and 'Create constructor' by scheglov@google.com · 13 years ago
  29. c67487c Fix for NPE with StringLiteral in toString() by scheglov@google.com · 13 years ago
  30. 16996b9 Tweaks for @deprecated and @override presentation by scheglov@google.com · 13 years ago
  31. ef41e13 Issue 5255. Override setter-only field with instance variable by scheglov@google.com · 13 years ago
  32. 4eb06ae Issue 5440. Fixes for exceptions during resolving by scheglov@google.com · 13 years ago
  33. 7f8731c Issue 5292. Unreferenced imported identifiers should not be an error by scheglov@google.com · 13 years ago
  34. 1d60036 Issue 5327. Fix for invalid 'instantiation of a class with the inherited abstract members' by scheglov@google.com · 13 years ago
  35. 082dd8c Issue 5302. Type alias type parameters should not conflict with formal parameters by scheglov@google.com · 13 years ago
  36. 018d23b Issue 5295. Reference to undefined static setter should be a warning not an error by scheglov@google.com · 13 years ago
  37. 48b5aa8 Allow static fields without types (issue 5149) by brianwilkerson@google.com · 13 years ago
  38. c0a0b5d Issue 5293. Invocation of an undefined static method should be a warning, not an error by scheglov@google.com · 13 years ago
  39. 4792aea Issue 5255. Remember 'overridden' for getters/setters and fields by scheglov@google.com · 13 years ago
  40. d6a06d9 Issue 5240. Using a non-type in a const object expression is an error, not a warning by scheglov@google.com · 13 years ago
  41. 51adcdd Fixes for raw string and block clean ups by scheglov@google.com · 13 years ago
  42. 3c4080a Issue 5163. Constructor/member name conflict should be error by scheglov@google.com · 13 years ago
  43. 1999601 "No SDK, No Problem!" (take 2) by pquitslund@google.com · 13 years ago
  44. 48b7ae5 Preparation for reporting an error for deprecated raw strings (issue 4815) by brianwilkerson@google.com · 13 years ago
  45. c78a9cf Clean up to migrate parseInt() and parseDouble() to int.parse() and double.parse() by scheglov@google.com · 13 years ago
  46. dda26cd Issue 5162. Report error when initializing already initialized final field by scheglov@google.com · 13 years ago
  47. 949ea1e fix PackageLibraryManager to resolve self links to right file by keertip@google.com · 13 years ago
  48. 627f980 Issue 5232. Type variables are in static scope, but using them is error by scheglov@google.com · 13 years ago
  49. f0ae22c Issue 5215. Invocation identical(x,y) is compile-time constant by scheglov@google.com · 13 years ago
  50. eb7e217 Issue 5116. Support both 'dynamic' and 'Dynamic' by scheglov@google.com · 13 years ago
  51. c095d07 Issue 5052. Analyzer should treat assert as a keyword by scheglov@google.com · 13 years ago
  52. b6da1f8 Issue 2862. Report warning if switch/case does not end with break, continue, return or throw by scheglov@google.com · 13 years ago
  53. d90d5b1 Reapply 'Add runtimeType() to Object which returns canonicalized instances of Type'. by karlklose@google.com · 13 years ago
  54. a17964f Issue 5153. Setter should not conflict with method by scheglov@google.com · 13 years ago
  55. 666341c Expose translatedUri (for clients who want to normalize URIs). by pquitslund@google.com · 13 years ago
  56. 5bcc7e0 Revert r12491 by ricow@google.com · 13 years ago
  57. 59e0304 Add runtimeType() to Object which returns canonicalized instances of Type. by karlklose@google.com · 13 years ago
  58. 342ea14 Fix the length of this expression nodes (issue 5185) by brianwilkerson@google.com · 13 years ago
  59. a9b557d Add metadata for type variables (issue 4056) by brianwilkerson@google.com · 13 years ago
  60. 6fffdf4 Issue 5148. Error on abstract method in concrete class needs to be a warning by scheglov@google.com · 13 years ago
  61. d680224 Issue 5082. It is an error if argument to '?' is not a formal parameter by scheglov@google.com · 13 years ago
  62. 14cb03a Issue 5044. Keep FieldElement as Element for field access by scheglov@google.com · 13 years ago
  63. 8184329 Issue 5075. Remove support for 'negate' and 'equals' operators by scheglov@google.com · 13 years ago
  64. a2395ed Issue 5084. Report error if a type name appears multiple times in an implements clause by scheglov@google.com · 13 years ago
  65. b388161 Issue 3476. Final variables don't have to have constant initializers by scheglov@google.com · 13 years ago
  66. ea65bbb Issue 3553. Stop treating static final variables as constants by scheglov@google.com · 13 years ago
  67. cd57835 Add built-in identifiers 'library', 'import', 'export' and 'part' (issue 5120) by brianwilkerson@google.com · 13 years ago
  68. 08f0d6f Re-enable test_typesPropagation_html_query (dartbug.com/4925). by pquitslund@google.com · 13 years ago
  69. fba2c23 New 'Clean Up' to convert old optional parameters to the new optional named where possible. by scheglov@google.com · 13 years ago
  70. 63476bc Merge of DartAstUtilities into DartNodes (and push into compiler.js). by pquitslund@google.com · 13 years ago
  71. a8e4699 show category information for sdk libs by keertip@google.com · 13 years ago
  72. c317d33 Issue 5049. Consistently resolve instance/static/top-level property access by scheglov@google.com · 13 years ago
  73. 911a8f9 Missing file from previous CL by brianwilkerson@google.com · 13 years ago
  74. 2d80d69 Convert throw from a statement to an expression (issue 4872) by brianwilkerson@google.com · 13 years ago
  75. 6700e32 Accept raw strings prefixed by 'r' (issue 4815) by brianwilkerson@google.com · 13 years ago
  76. 753903b Issue 5042. Fix for resolving [], []= and [] op= by scheglov@google.com · 13 years ago
  77. ed3c755 Issue 5044. Make all abstract fields resolve to setter or getter methods. by scheglov@google.com · 13 years ago
  78. d3b5cfb First partial step at removing interfaces in libraries. by bak@google.com · 13 years ago
  79. 4b35780 Issue 5055. Visit field getter/setter only once. by scheglov@google.com · 13 years ago
  80. b537a1c Issue 4752. When convert to getter, remove also () by scheglov@google.com · 13 years ago
  81. ef8d538 Build path tweaks to include javatests in the analyzer eclipse project. by pquitslund@google.com · 13 years ago
  82. 06469da Issue 5004. Type inference with 'is!' and 'continue'. by scheglov@google.com · 13 years ago
  83. a1770a8 Sync .gitignore with the corresponding svn properties. by antonm@google.com · 13 years ago
  84. 2cb90be Don't report 'no such method' if class defines 'noSuchMethod' by scheglov@google.com · 13 years ago
  85. 088eb5d fix library manager to handle nested dart: libraries by danrubel@google.com · 13 years ago
  86. 03ccc4d Issue 4988. Fixe for 'assert' statement vs function resolving by scheglov@google.com · 13 years ago
  87. b950e57 Fix PackageLibraryManager set package directory by danrubel@google.com · 13 years ago
  88. c8950c5 modify files view to use declared sdk libraries by keertip@google.com · 13 years ago
  89. d22aff9 Re-disable test_typesPropagation_html_query pending re-think (dartbug.com/4925) [TBR]. by pquitslund@google.com · 13 years ago
  90. 6408f0c Re-disable test_typesPropagation_html_query pending re-think (dartbug.com/4925). by pquitslund@google.com · 13 years ago
  91. 7e0e3e1 Re-enable test_typesPropagation_html_query (dartbug.com/4925). by pquitslund@google.com · 13 years ago
  92. 93f4f29 Support for new 'export' directive in resolver by scheglov@google.com · 13 years ago
  93. 886064f Fix internal exception when assignment happens in initializer by scheglov@google.com · 13 years ago
  94. 35dc358 Parser changes to support new export directive by brianwilkerson@google.com · 13 years ago
  95. cd3eb37 change sdk layout, fix tests to work with the change by keertip@google.com · 13 years ago
  96. b8bc1a8 Clean ups for trailing whitespace and block style by scheglov@google.com · 13 years ago
  97. c58f6cb Use of undefined class in const constructor should be an error (issue 4882) by brianwilkerson@google.com · 13 years ago
  98. ba8b6cd Enable use of new metadata in analysis by brianwilkerson@google.com · 13 years ago
  99. bd121a0 Generate different ErrorCodes for inferred and explicit type problems by scheglov@google.com · 13 years ago
  100. d7e8b5f Fixing DartC build by scheglov@google.com · 13 years ago