This repository was archived by the owner on Nov 4, 2024. It is now read-only.
Commit 5280d34
Mikhail Arkhipov
Merge persistence work into master (microsoft#1482)
* Persistent analysis, part I (microsoft#1224)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* Merge master into database branch (microsoft#1312)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* Avoid empty node in empty global scope (microsoft#1226)
* Add null checks
* Avoid null node in empty global scope
* Remove unrelated change
* Lock content since it is locked in other cases (microsoft#1227)
* Fix addBrackets setting (microsoft#1241)
* Fix addBrackets
* Remove unrelated change
* Usings
* Handle library analysis better (microsoft#1246)
* Trying to augment argument set with Evaluator and Expression context (microsoft#1259)
* Moving anyStr to its own method to prevent FromTypeVar from being called with an ArgumentSet that has no context
* Trying to augment argument set with context wherever possible
* Setting expression in argument set, removing null
* Renaming to WithoutContext and updating comment
* Check for null args in PythonFunctionOverload
* When returning in init method, report a diagnostic error (microsoft#1261)
* When returning in init method, report a diagnostic error
* Adding check and tests for returning None before adding error for a return statement in the init function
* Cleaning up tests
* Give Diagnostic messages on improper usage of Generic (microsoft#1248)
* Adding diagnostic message for improper use Generic.
* Adding tests to make sure no diagnostics on valid uses of Generic
* Adding diagnostic error on binary operations with incompatible types (microsoft#1254)
* Adding diagnostic error for binary operations with incompatible types - e.g 5 + 'str'
* When NewType is called and the first argument is not a string, make a diagnostic message (microsoft#1260)
* Adding diagnostic error if the user calls NewType with the first arg not of string type
* Fix typo in TROUBLESHOOTING.md (microsoft#1285)
* Multiple analysis fixes (microsoft#1297)
Multiple analysis fixes.
- Fixes microsoft#1151: Reliable way to determine final analysis of a module
- Fixes microsoft#1201: NRE in SymbolCollector.AddProperty
- Fixes microsoft#1228: NRE in TryFindMissingDependencies
- Fixes microsoft#1294: Handle valid case for reloading AST
- Fixes microsoft#1295: FindReferences doesn't work on package init members
- Fixes microsoft#1296: DependencyResolver graph misses intermediate imports
- Part of the fix for microsoft#1174: All references are not listed when using ms language server (fixes in analysis itself are also required for this one)
* Rework search path resolution (microsoft#1289)
* first working path classfier, breaks existing path code for now
* inherit Comparer instead of implementing both
* don't do path depth comparison, preserve user ordering as before
* switch to using new path classification code in main module resolution
* fix typo
* clean up comment about paths in Server.cs
* use String.Split instead of regex when parsing script output
* test ordering of user provided paths
* add new normalize and trim helper, check preconditions as debug asserts rather than commenting on them
* use Split extension, don't MaybeEnumerate paths
* No diagnostic message when Generic is called with no args (microsoft#1305)
* No diagnostic message when Generic is called with no args
* When a class inherits from something that is not a class, give a diagnostic error (microsoft#1277)
* When analyzing class definitions, give diagnostic if bases are not all class types
* PR feedback
* Treat persistent module as regular specialized (microsoft#1334)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Fix merge issue
* Remove debug code
* Store location of module members in the database (microsoft#1339)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Basic locations test
* Navigation
* Add test
* Update baselines
* Port changes from dbtype
* Multiple fixes and additional tests for persistence (microsoft#1372)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Add RDT count to the analysis_complete event (microsoft#1396)
* Add RDT count to the analysis_complete event
* Use property instead of method
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Prevent crashes when the AST happens to be null (microsoft#1405)
* Remove all references to dropped modules and force GC on reload (microsoft#1402)
* First attempt at ensuring moduled dropped during reload are GC'd
* Make sure AST is set after content is cleared
* More tests passing
* ModuleWalker updates
* Also don't merge against specialized modules, do builtin _astMap reset before reanalyzing instead of after any analysis
* Don't call dispose directly, it's done elsewhere and has no effect
* Force GC via normal session instead of waiting for a hardcoded time
* Un-refactor function since it's not being called externally anymore
* Formatting/usings
* PR feedback
* Undo IsBuiltin, some things continued to be referenced with that changed
* Move reload logic down into PythonAnalyzer, remove added public inferface items
* Mode AddReference to PythonType as override
* Remove dead code, make all ResetAnalyzer calls full
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Add persistence tests for 60+ system modules (microsoft#1429)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Update baselines
* Test update (we no longer reassign classes)
* Fix typing tests
* Update baseline
* Fix missing keys issue (microsoft#1451)
* Typevar fix
* Persistence of generics and named tuples (microsoft#1459)
* Remove old qualified name
* Node storage
* Class and scope to use AST map
* Library analysis
* Fix SO
* Keep small AST with imports
* AST reduction
* Final field
* Initial
* Reload
* Ignore post-final requests
* Drop AST
* Remove local variables
* Test fixes
* Fix overload match
* Tests
* Add locks
* Remove local variables
* Drop file content to save memory
* Cache PEP hints
* Recreate AST
* Fix specialization
* Fix locations
* usings
* Test fixes
* Add options to keep data in memory
* Fix test
* Fix lambda parameters
* Fix argument set
Fix global scope node
* Fix overload doc
* Fix stub merge errors
* Fix async issues
* Undo some changes
* Fix test
* Fix race condition
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Partial
* Rework
* Fix null
* Update baselines
* Functools pass
* Reverse stub merge
* Partial
* Partial ctypes
* Update variables post merge
* Fix ctypes
* Merge issues
* Fix typevar
* Add caching on construction
* Assorted fixes
* Named tuples
* Work around os stub oddness
* Fix generic qualified names
* Ignore lambdas
* Support named tuples as bases
* Baselines
* Test updates
* Named tuple tests
* PR feedback
* Using
* Move diagnostics to GenericBase
* PR feedback
* - Fix microsoft#1455: AF: Library module of type Stub has been analyzed already! (microsoft#1470)
- Restore task handling in unit tests
- Throw exception from Debug.Fail instead of FailFast
* Update baselines since __spec__ member was added
* Undo some of changes to match master.
* Fix null ref
* Resolve conflicts
* Fix null ref on bases due to new AnyStr behavior
* Handling dependencies in module persistence (microsoft#1471)
* Partial
* Models and views
* Restore log null checks
* Fix merge conflict
* Fix merge issue
* Null check
* Partial
* Partial
* Partial
* Fix test
* Partial
* Partial
* First test
* Baseline comparison
* Builtins
* Partial
* Type fixes
* Fix type names, part I
* Qualified name
* Properly write variables
* Partial
* Construct module from model
* Test
* Variable creations
* Factories
* Factories
* Split construction
* Restore
* Save builtins
* Test passes
* Qualified name
* Better export detection
* Test fixes
* More consistent qualified names
* Sys test
* Demo
* Complete sys write/read
* Partial
* Partial
* Test staility
* Perf bug
* Baseline, remove debug code, deactivate db
* Test fixes
* Test fix
* Simplify a bit
* Baselines and use : separator
* Baselines
* PR feedback
* Merge master
* Remove registry reference
* PR feedback
* PR feedback
* Restore persistence + update test
* Better handle persistent module in dependencies
* Undo
* Add location converter abstraction
* Store member location
* Fix merge issue
* Basic locations test
* Navigation
* Add test
* Update baselines
* Type restore - initial
* Remove debug code
* Partial
* Fix stub merge
* Various model fixes
* Improve module handling
* Qualified name improvements
* Fix unbound case
* Improve stub merge
* Fix qualified names of typing
* Handle stub-only modules
* Add tests for io, re and sys
* Better handle named tuple
* Handle module circular references
* Handle else in platform and version clauses + handle it in symbol collector
* Formatting
* Fix walk of multi-level if statement
* Unify package search in imports
* Fix tests
* Undo change
* Port changes from dbtype
* Partial
* Named tuple support
* Baseline updates
* Debug code
* Support types
* Properly compare class member declaring type
* Nested classes and functions persistence
* Undo debug
* Fix numpy restore
* Baselines
* Fix tests
* Update AnyStr test reflecting changes to AnyStr behavior
* Exclude baselines from git diff
* Fix gitattr
* Move git setting to root
* Try no path
* Test fixes
* Undo change
* Additional stub merge fixes
* Baseline updates
* Fix goto def
* Protect specific type creation
* Track documentaton source
* More reliable tests + simplification
* Typo
* Cleanup
* Basic classification
* Fix merge error
* Module unique id fixes
* Stricted check to save analysis
* Revert "Fix tests"
This reverts commit 247a8c3.
* Revert "Unify package search in imports"
This reverts commit 67fed10.
* Don't clear scope variables with inner classes
* Fix typo
* Many new tests
* Fix collections test
* Fix CTypes
* Initial
* Update test
* Merge issues
* Fix CTypes again
* Fix null bases
* Tell between class members with/without self better
* TypeVar support
* Add bound/covariant
* Fix Enum reassignments
* Fix Random
* Fix import * over local declarations (Socket)
* Move interface
* Fix reference search
* Enable asyncio test
* More tests
* Enable dataclasses
* Add inspect and gzip
* More tests
* Add setting
* Add handling of import position relative to the variable
* Caching level changes
* Partial
* Rework
* Fix null
* Update baselines
* Functools pass
* Reverse stub merge
* Partial
* Partial ctypes
* Update variables post merge
* Fix ctypes
* Merge issues
* Fix typevar
* Add caching on construction
* Assorted fixes
* Named tuples
* Work around os stub oddness
* Fix generic qualified names
* Ignore lambdas
* Support named tuples as bases
* Baselines
* Test updates
* Named tuple tests
* PR feedback
* Using
* Separate creation and population for better handling of forward references.
* Add dependency provider
* Merge issues
* Better class creation
* Partial
* Dependency providers
* Add IsPersistent flag
* Make special global scope
* Move dependency fetch earlier
* Replace AST walk by interface
* Make analysis sequence closer to master
* Undo some
* Undo debug
* Show dependencies in log
* null check
* Update tests
* Make sure factory looks in correct scope
Enable assertions in tests
* Separate stub dependencies
* Don't try and merge from empty stub
* Match generic parameters by name
* Use qualified names in generics
Minor tests cleanup
* Back to names
* Update tests
* usings
* Fix dependencies for stub
* Null check
* PR feedback
* PR feedback + fix merge issue in generics
* Test fixes + PR feedback
* Baseline updates
* PR feedback
* Restore original order
* Order
* Merge issues
* Make cancellation closer to original
* Pass cancellation to module walker
* Simplify
* Upgrade to 3.0
* Undo change + .NET 3
* Get back to 2.0
* Update components
* Display caching level
Round time to reasonble fractions.
* Fix null ref due to conflicting changes
* Null ref fix
* Simplify
* Pass AST whish is required during analysis when module does not have its own yet.
* tensorflow test
* Fix from import model
Add tensorflow test
* Undo debug
* Improve goto def in import and fix class base processing (microsoft#1529)
* Update signing project to 3.0
* Upgrade to .NET 3.0 (microsoft#1521)
* Upgrade to 3.0
* Get back to 2.0
* Add global.json for .NET SDK
* Ensure FileInfo is not relative in DirectoryInfoProxy (microsoft#1519)
* Ensure FileInfo is not relative in DirectoryInfoProxy
* Add tests
* Hadle import
* Update dependencies (microsoft#1526)
* Handle from import
* Add test
* Fix bad find and replace in AssertionsUtilities (microsoft#1527)
* Merge issues
* Add test (fails)
* using
* Fix merge of classes
* Fix regression in bases
Split merging into separate class
* Fix null refs
* Make common CanUpdateAnalysis check
* Usings
* Test fix
* Remove CompletionItemKind.None
* Add info to asserts
* PR feedback
* Undo test change, enable class reassignment
Fix stub merge for TypeVar
* Prevent merge of unrelated types
* more tests
* Fix variable update
* Null check
* Baselines
* Move analysis complete event
* More stable enumeration
* Improve restoring imports in tests
* Make extension for tests
* Add URI null check
* Fix completion typo
* Add assert on unresolved modules
* Add more details to assert
* Using
* To 3.7
* Implement check for big/little endian
* Sync
* Synchronization
Fix import model restore
* Add hard assert
* Fix exception
* Fix typo
* Add lock1 parent 448c9cc commit 5280d34
223 files changed
Lines changed: 8043 additions & 1988 deletions
File tree
- build
- src
- Analysis
- Ast
- Impl
- Analyzer
- Definitions
- Evaluation
- Handlers
- Symbols
- Caching
- Definitions
- Definitions
- Dependencies
- Documents
- Extensions
- Modules
- Definitions
- Resolution
- Properties
- Specializations
- Typing
- Definitions
- Types
- Values
- Types
- Collections
- Definitions
- Utilities
- Values/Collections
- Test
- FluentAssertions
- Properties
- Core/Impl
- DependencyResolution
- Interpreter
- Properties
- Caching
- Impl
- Extensions
- Models
- Properties
- Test
- Files
- FluentAssertions
- Core
- Impl
- Extensions
- IO
- OS
- Text
- Test
- LanguageServer
- Impl
- Completion
- Documentation
- Implementation
- Protocol
- Sources
- Test
- Parsing
- Impl
- Ast
- Tokens
- Test
- UnitTests/Core/Impl
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
| 17 | + | |
16 | 18 | | |
17 | 19 | | |
18 | 20 | | |
19 | 21 | | |
20 | 22 | | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
21 | 28 | | |
22 | 29 | | |
23 | 30 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | 20 | | |
22 | 21 | | |
23 | 22 | | |
| |||
Lines changed: 7 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
84 | | - | |
| 84 | + | |
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | | - | |
| 116 | + | |
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
| 120 | + | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
Lines changed: 15 additions & 19 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
| 67 | + | |
67 | 68 | | |
68 | | - | |
69 | | - | |
| 69 | + | |
| 70 | + | |
70 | 71 | | |
71 | 72 | | |
72 | 73 | | |
| |||
77 | 78 | | |
78 | 79 | | |
79 | 80 | | |
80 | | - | |
| 81 | + | |
81 | 82 | | |
82 | 83 | | |
83 | | - | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | | - | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
88 | 89 | | |
89 | 90 | | |
90 | 91 | | |
| |||
97 | 98 | | |
98 | 99 | | |
99 | 100 | | |
| 101 | + | |
100 | 102 | | |
101 | 103 | | |
102 | 104 | | |
103 | 105 | | |
104 | 106 | | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
| 107 | + | |
| 108 | + | |
113 | 109 | | |
114 | 110 | | |
115 | | - | |
| 111 | + | |
| 112 | + | |
116 | 113 | | |
117 | | - | |
118 | 114 | | |
119 | 115 | | |
120 | 116 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
108 | | - | |
| 108 | + | |
109 | 109 | | |
110 | | - | |
| 110 | + | |
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
| |||
Lines changed: 18 additions & 14 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| 58 | + | |
58 | 59 | | |
59 | 60 | | |
60 | 61 | | |
| |||
188 | 189 | | |
189 | 190 | | |
190 | 191 | | |
191 | | - | |
| 192 | + | |
192 | 193 | | |
193 | 194 | | |
194 | 195 | | |
| |||
236 | 237 | | |
237 | 238 | | |
238 | 239 | | |
239 | | - | |
240 | 240 | | |
241 | | - | |
242 | | - | |
243 | | - | |
244 | | - | |
245 | | - | |
246 | | - | |
247 | | - | |
248 | | - | |
249 | | - | |
| 241 | + | |
| 242 | + | |
250 | 243 | | |
251 | 244 | | |
252 | | - | |
253 | | - | |
254 | | - | |
| 245 | + | |
255 | 246 | | |
256 | 247 | | |
257 | 248 | | |
258 | 249 | | |
259 | 250 | | |
260 | 251 | | |
261 | 252 | | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
262 | 266 | | |
263 | 267 | | |
264 | 268 | | |
| |||
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| 61 | + | |
61 | 62 | | |
62 | | - | |
| 63 | + | |
63 | 64 | | |
64 | 65 | | |
65 | 66 | | |
66 | | - | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
0 commit comments