Dmitry Bushev
a34c2bcfe6
Implement Documentation Sections API ( #3360 )
2022-03-25 10:49:37 +03:00
Radosław Waśko
85a5770b7f
Quick-fix for Error.to_text CCE ( #3357 )
...
This is just a quick fix addressing an issue which was making debugging problematic.
The proper solution to the broader issue described at https://github.com/enso-org/enso/issues/1538#issuecomment-789645573 still needs to be done.
2022-03-24 13:12:53 +00:00
Radosław Waśko
85c09e7414
Make Resource.bracket
not run the action if initializer failed with a dataflow error ( #3356 )
2022-03-23 16:36:35 +01:00
Hubert Plociniczak
66e2135b0d
Initialize AtomConstructor's fields via local vars ( #3330 )
...
The mechanism follows a similar approach to what is being in functions
with default arguments.
Additionally since InstantiateAtomNode wasn't a subtype of EnsoRootNode it
couldn't be used in the application, which was the primary reason for
issue #181449213 .
Alternatively InstantiateAtomNode could have been enhanced to extend
EnsoRootNode rather than RootNode to carry scope info but the former
seemed simpler.
See test cases for previously crashing and invalid cases.
2022-03-21 09:15:14 +00:00
Radosław Waśko
cc7333812d
The library developer should be able to handle specific types of Panics while passing through others ( #3344 )
...
Implements https://www.pivotaltracker.com/story/show/181569176
Also ensures that Dataflow Errors have proper stack traces (earlier they did not point at the right location).
2022-03-18 16:57:06 +00:00
James Dunkerley
286950b2a2
Replace deprecated EpbContext calls and caching of Ordering ( #3342 )
...
Final set of deprecated calls to CachedContext removed.
Also removed caching of Ordering as these are singletons.
2022-03-16 13:23:31 +00:00
Radosław Waśko
dedd1eac96
Refactor library warnings to use the new system ( #3337 )
...
Implements https://www.pivotaltracker.com/story/show/181536964
2022-03-15 12:52:57 +01:00
James Dunkerley
58fe42a20c
Fix many of the deprecated warnings in the engine build ( #3321 )
...
Cleaning up the deprecated access to Context and Language
2022-03-09 17:08:03 +00:00
Marcin Kostrzewa
4653bfeeab
Decorate values with arbitrary warnings ( #3248 )
2022-03-09 16:40:02 +01:00
James Dunkerley
65465fb8ef
Restructuring the Faker type and creating tests for Group_By ( #3318 )
...
- Added Minimum, Maximum, Longest. Shortest, Mode, Percentile
- Added first and last to Map
- Restructured Faker type more inline with FakerJS
- Created 2,500 row data set
- Tests for group_by
- Performance tests for group_by
2022-03-09 10:31:02 +00:00
Hubert Plociniczak
f92108158c
Added compare_to
to True/False ( #3317 )
2022-03-08 14:24:04 +01:00
James Dunkerley
fb68f18739
Within Vector, use Array.Copy wherever possible ( #3236 )
...
Following the Slice and Array.Copy experiment, took just the Array.Copy parts out and built into the Vector class.
This gives big performance wins in common operations:
| Test | Ref | New |
| --- | --- | --- |
| New Vector | 41.5 | 41.4 |
| Append Single | 26.6 | 4.2 |
| Append Large | 26.6 | 4.2 |
| Sum | 230.1 | 99.1 |
| Drop First 20 and Sum | 343.5 | 96.9 |
| Drop Last 20 and Sum | 311.7 | 96.9 |
| Filter | 240.2 | 92.5 |
| Filter With Index | 364.9 | 237.2 |
| Partition | 772.6 | 280.4 |
| Partition With Index | 912.3 | 427.9 |
| Each | 110.2 | 113.3 |
*Benchmarks run on an AWS EC2 r5a.xlarge with 1,000,000 item count, 100 iteration size run 10 times.*
# Important Notes
Have generally tried to push the `@Tail_Call` down from the Vector class and move to calling functions on the range class.
- Expanded benchmarks on Vector
- Added `take` method to Vector
- Added `each_with_index` method to Vector
- Added `filter_with_index` method to Vector
2022-03-03 15:40:48 +00:00
Dmitry Bushev
3858ae7517
Add API for component groups ( #3286 )
2022-02-24 15:41:14 +03:00
Marcin Kostrzewa
67b4e59506
Properly expose stacktraces and related data to user code ( #3271 )
2022-02-16 10:36:19 +03:00
Edward Kmett
0c25ee736c
Upgrade Truffle and Graal to Version 21.3.0 ( #3258 )
2022-02-11 19:05:13 +03:00
Marcin Kostrzewa
ee8df25fd5
Fix vector sorting with TCO comparators ( #3256 )
2022-02-09 22:17:43 +01:00
Radosław Waśko
8b24336604
Data analysts should be able to reorder columns into name order using sort_columns functions ( #3250 )
2022-02-08 17:28:46 +01:00
Michał Wawrzyniec Urbańczyk
4baad5f146
Nightly proccess preparations: Setting Enso version through the environment ( #3241 )
...
Co-authored-by: Radosław Waśko <radoslaw.wasko@enso.org>
Co-authored-by: Radosław Waśko <wasko.radek@gmail.com>
2022-02-07 15:14:32 +01:00
Edward Kmett
8a70debb59
Implement conversions ( #180312665 ) ( #3227 )
...
* Implement conversions
start wip branch for conversion methods for collaborating with marcin
add conversions to MethodDispatchLibrary (wip)
start MethodDispatchLibrary implementations
conversions for atoms and functions
Implement a bunch of missing conversion lookups
final bug fixes for merged methoddispatchlibrary implementations
UnresolvedConversion.resolveFor
progress on invokeConversion
start extracting constructors (still not working)
fix a bug
add some initial conversion tests
fix a bug in qualified name resolution, test conversions accross modules
implement error reporting, discover a ton of ignored errors...
start fixing errors that we exposed in the standard library
fix remaining standard lib type errors not caused by the inability to parse type signatures for operators
TODO: fix type signatures for operators. all of them are broken
fix type signature parsing for operators
test cases for meta & polyglot
play nice with polyglot
start pretending unresolved conversions are unresolved symbols
treat UnresolvedConversons as UnresolvedSymbols in enso user land
* update RELEASES.md
* disable test error about from conversions being tail calls. (pivotal issue #181113110 )
* add changelog entry
* fix OverloadsResolutionTest
* fix MethodDefinitionsTest
* fix DataflowAnalysisTest
* the field name for a from conversion must be 'that'. Fix remaining tests that aren't ExpressionUpdates vs. ExecutionUpdate behavioral changes
* fix ModuleThisToHereTest
* feat: suppress compilation errors from Builtins
* Revert "feat: suppress compilation errors from Builtins"
This reverts commit 63d069bd4f
.
* fix tests
* fix: formatting
Co-authored-by: Dmitry Bushev <bushevdv@gmail.com>
Co-authored-by: Marcin Kostrzewa <marckostrzewa@gmail.com>
2022-02-06 04:02:09 -05:00
Dmitry Bushev
2d4df96e10
Implement the component resolving algorithm ( #3244 )
2022-02-03 10:40:39 +03:00
Radosław Waśko
cfdb33bc68
Improve Vector ( #3232 )
2022-01-25 18:29:39 +01:00
James Dunkerley
8387375d83
Moving distinct to Map ( #3229 )
...
* Moving distinct to Map
* Mixed Type Comparable Wrapper
* Missing Bracket
Still an issue with `Integer` in the mixed vector test
* PR comments
* Use naive approach for mixed types
* Enable pending test
* Performance timing function
* Handle incomparable types cleanly
* Tidy up the time_execution function
* PR comments.
* Change log
2022-01-25 09:57:30 +00:00
Radosław Waśko
4fc97d5563
Fix a few typos in code ( #3223 )
...
* Fix a typo in build.sbt
* Change incorrect Panic.catch reference to Panic.recover
2022-01-13 16:17:19 +01:00
Dmitry Bushev
ca0a6f0bf6
Update Scala to 2.13.7 ( #3214 )
2021-12-31 17:50:32 +03:00
Dmitry Bushev
2676aa50a3
fix: method clash error ( #3210 )
2021-12-28 18:09:34 +03:00
Mateusz Czapliński
895291876c
Fix problems related to error visualisation evaluation ( #3193 )
...
- Add parser & handler in IDE for `executionContext/visualisationEvaluationFailed` message from Engine (fixes a developer console error "Failed to decode a notification: unknown variant `executionContext/visualisationEvaluationFailed`"). The contents of the error message will now be properly deserialized and printed to Dev Console with appropriate details.
- Fix a bug in an Enso code snippet used internally by the IDE for error visualizations preprocessing. The snippet was using not currently supported double-quote escaping in double-quote delimited strings. This lack of processing is actually a bug in the Engine, and it was reported to the Engine team, but changing the strings to single-quoted makes the snippet also more readable, so it sounds like a win anyway.
- A test is also added to the Engine CI, verifying that the snippet compiles & works correctly, to protect against similar regressions in the future.
Related: #2815
2021-12-21 10:00:57 +01:00
Dmitry Bushev
f03640b93a
Test visualizations with error values ( #3196 )
2021-12-17 19:07:16 +03:00
Dmitry Bushev
04ac2a2009
Add method benchmarks ( #3180 )
2021-12-07 18:35:14 +03:00
Dmitry Bushev
6a426c477a
Enable conversion methods ( #3177 )
2021-12-03 18:14:13 +03:00
Dmitry Bushev
607330712a
Add support for conversions in Language Server ( #3175 )
2021-12-03 11:31:44 +03:00
Radosław Waśko
46c31bb9a5
Preinstalling With Dependencies ( #1981 )
2021-11-23 11:51:17 +03:00
Michał Wawrzyniec Urbańczyk
361882b033
Fix SystemProcessTest
to not require presence of echo
program on Windows. ( #3152 )
...
Co-authored-by: Dmitry Bushev <bushevdv@gmail.com>
2021-11-16 16:37:12 +01:00
Marcin Kostrzewa
f4823f0ad6
Auto Parallelism ( #2000 )
2021-09-28 00:48:17 +02:00
Ara Adkins
d6465e9e97
Implement a --compile
command for the engine runner ( #1998 )
2021-09-24 12:24:44 +01:00
Ara Adkins
1cd2706ba8
Load IR Caches from Disk ( #1996 )
2021-09-18 13:48:13 +01:00
Dmitry Bushev
592b016caf
Add log.masking runtime option ( #1993 )
2021-09-10 10:56:23 +01:00
Ara Adkins
ab8b2a2d4a
Implement writing of IR caches ( #1991 )
2021-09-08 17:15:42 +01:00
Ara Adkins
7cced6a9de
Make the BindingsMap
able to break links ( #1980 )
2021-08-31 15:50:33 +01:00
Radosław Waśko
826e28a149
Implement library/preinstall
(Without Dependencies Yet) ( #1972 )
2021-08-27 14:01:13 +02:00
Ara Adkins
649fe33ccf
Add support for IR cache locations ( #1973 )
2021-08-26 11:52:35 +01:00
Ara Adkins
c18fe2d750
Provide regex support on Text
( #1968 )
2021-08-23 12:09:51 +01:00
Radosław Waśko
63819526d7
Update the editions/listDefinedLibraries
Endpoint ( #1964 )
2021-08-19 17:21:31 +02:00
Marcin Kostrzewa
4536ed9f9b
Stdlib Improvements ( #1963 )
2021-08-19 14:55:15 +02:00
Radosław Waśko
385464d0f0
Implement Files.list
( #1961 )
2021-08-18 21:26:22 +02:00
Dmitry Bushev
0d43c32171
[release: nightly] Retry visualization evaluation ( #1958 )
...
Retry the evaluation of visualization expression
2021-08-17 18:43:39 +03:00
Dmitry Bushev
db317abb4a
Log visualization evaluation errors ( #1956 )
...
Log errors during the visualization evaluation
2021-08-17 14:59:19 +03:00
Maciej Mikołajek
6652a00241
Title in docs in IDE ( #1904 )
2021-08-17 01:40:58 +02:00
Radosław Waśko
be6e60509a
Tool To Bump Stdlib Version ( #1947 )
2021-08-13 18:14:20 +02:00
Radosław Waśko
fac0405fd0
Updating Editions ( #1944 )
2021-08-12 16:55:23 +02:00
Ara Adkins
eb7e7d0872
Propagate dataflow errors in host and polyglot ( #1941 )
2021-08-11 17:05:23 +01:00
Marcin Kostrzewa
a69d978110
Fix visualization interrupts ( #1939 )
2021-08-11 13:06:47 +02:00
Radosław Waśko
31167fd6ae
Revert "Revert "Library Publishing MVP ( #1898 )"" ( #1933 )
2021-08-09 16:00:04 +02:00
Ara Adkins
a1116995d8
Fix a bad heuristic for identifying module docs ( #1919 )
2021-08-03 13:19:22 +01:00
Dmitry Bushev
6bfd500846
Support Types Unions in Suggestions Database ( #1912 )
...
Add support for binary operators in type signatures
2021-07-30 17:58:33 +03:00
Ara Adkins
e9523d8eda
Add aliases to the standard library ( #1907 )
2021-07-28 19:21:19 +01:00
Dmitry Bushev
8336a97931
Add Support for Project Templates ( #1902 )
...
Add an ability to create a project from a template
2021-07-27 19:13:14 +03:00
Ara Adkins
bc96f0e05c
Add support for documenting modules ( #1900 )
2021-07-26 13:26:41 +01:00
Ara Adkins
a7478bc573
Revert "Library Publishing MVP ( #1898 )"
...
This reverts commit 1bd4e5824e
.
2021-07-26 10:32:19 +01:00
Radosław Waśko
1bd4e5824e
Library Publishing MVP ( #1898 )
2021-07-23 18:16:34 +02:00
Radosław Waśko
f3bc88b91e
Library Downloads MVP ( #1885 )
2021-07-22 08:24:06 +02:00
Dmitry Bushev
980ba8cb65
Add Reexport Field to Suggestions ( #1793 )
...
Add the reexport field to suggestions
2021-07-20 19:10:53 +03:00
Radosław Waśko
86fcd86055
New Language Server API Implementations / Mocks ( #1875 )
2021-07-17 16:49:51 +02:00
Dmitry Bushev
4235d345aa
[release: nightly] Prune Versions when Verifying Modules Index ( #1881 )
...
clean module versions together with the
module suggestions
2021-07-16 20:10:55 +03:00
Dmitry Bushev
214495ad56
Add Runtime Tests ( #1869 )
...
Add extra runtime tests
2021-07-15 19:44:50 +03:00
Ara Adkins
314742ab47
[release: nightly] Disable interrupts to protect HostClassLoader ( #1867 )
2021-07-15 13:09:48 +01:00
Dmitry Bushev
1a9af9f39e
[release: nightly] Fix the compilation order ( #1866 )
2021-07-15 11:37:56 +01:00
Radosław Waśko
782a671498
Fix imports when attaching a visualization ( #1857 )
2021-07-14 09:41:29 +01:00
Radosław Waśko
b58e895b18
Editions Integration ( #1832 )
2021-07-08 15:38:20 +02:00
Ara Adkins
b71d01b507
Add compiler support for conversion methods ( #1834 )
2021-07-08 12:51:42 +01:00
Maciej Mikołajek
520cd70d55
Documentation files on disk Part 1. ( #1744 )
2021-07-07 15:00:33 +02:00
Radosław Waśko
e58b5eb81d
Dynamically Loading Libraries ( #1826 )
2021-07-06 00:27:14 +02:00
Marcin Kostrzewa
1d18310d2a
Refactor import resolver to allow for dynamic loading of modules. ( #1822 )
2021-06-28 16:20:15 +02:00
Marcin Kostrzewa
334a022ffd
Import syntax including namespace ( #1806 )
2021-06-24 12:42:24 +02:00
Ara Adkins
5a3775e028
Add syntactic support for conversion definitions ( #1815 )
2021-06-23 18:29:13 +01:00
Maciej Mikołajek
4173dd810f
Documentation in the Suggestions Database ( #1791 )
2021-06-22 14:44:48 +02:00
Marcin Kostrzewa
b4709ab529
Default visualization definitions ( #1786 )
2021-06-08 08:12:02 +02:00
Ara Adkins
80eff9c017
Misc compiler enhancements ( #1748 )
2021-05-21 16:53:44 +01:00
Ara Adkins
a8fce2421a
Remove the EPB GIL for GraalPython ( #1747 )
2021-05-20 08:29:22 +01:00
Ara Adkins
48bcebc723
Update to GraalVM 21.1.0 ( #1738 )
2021-05-14 13:08:39 +01:00
Dmitry Bushev
1b6388702f
Implement masking of sensitive data in logs ( #1732 )
2021-05-12 16:31:53 +01:00
Ara Adkins
74b1fe9d23
Finish updating the standard library examples ( #1731 )
2021-05-06 16:55:26 +01:00
Ara Adkins
66599fda25
Enhance examples for Standard.Base.*
( #1714 )
2021-05-04 09:49:53 +01:00
Dmitry Bushev
7c98ed6014
feat: higher-kinded types in suggestions ( #1712 )
...
Support higher-kinded types when building suggestions.
2021-04-29 12:08:05 +03:00
Dmitry Bushev
c9e5e4efe4
Synchronize Runtime Updates Sending ( #1691 )
...
Add `UpdatesSynchronizationState` that manages
the runtime update messages and tracks which
updates are sent to the user
2021-04-26 13:15:04 +03:00
Dmitry Bushev
d9e1a47460
Report Visualization Errors ( #1671 )
...
Add `executionContext/visualisationEvaluationFailed`
notification
2021-04-21 16:32:22 +03:00
Dmitry Bushev
f43655a80c
Add an Atom Suggestion for a Module ( #1659 )
...
Add an atom suggestion representing a module
2021-04-13 16:43:36 +03:00
Dmitry Bushev
fde4f2d0d6
Resolve clashing project identifiers ( #1665 )
2021-04-13 13:19:16 +01:00
Ara Adkins
8b0588939e
Fix some implementations for the Vector constructors ( #1650 )
2021-04-06 20:06:34 +01:00
Dmitry Bushev
96957b7b03
Sync Suggestions Database when Renaming the Project ( #1647 )
...
Changelog:
- feat: during the boot, prune outdated modules
from the suggestions database
- feat: when renaming the project, send updates
about changed records in the database
- refactor: remove deprecated
executionContext/expressionValuesComputed
notification
2021-04-06 14:23:12 +03:00
Ara Adkins
9585080ab8
Clean up the standard library docs ( #1641 )
2021-04-01 12:20:36 +01:00
Dmitry Bushev
91e591c5b3
Enable All Languages in Context ( #1640 )
...
Enable All Languages in Context
2021-03-31 20:18:48 +03:00
Radosław Waśko
444ae39d28
Inlining Helper for Benchmarks ( #1638 )
2021-03-31 17:11:34 +02:00
Dmitry Bushev
c32780fbc8
Misc Runtime Fixes ( #1633 )
...
Misc runtime fixes
2021-03-30 12:11:04 +03:00
Dmitry Bushev
29eaecaeec
Wait for truffle context init ( #1617 )
2021-03-26 09:19:48 +00:00
Ara Adkins
78ab5ee5e5
Provide searcher suggestions for compatible types ( #1613 )
2021-03-25 12:07:41 +00:00
Dmitry Bushev
6ba5941591
Do not cache panics ( #1611 )
2021-03-25 10:30:58 +00:00
Marcin Kostrzewa
d97c7f51a4
Make the process library more IDE-friendly ( #1591 )
2021-03-18 15:45:02 +00:00
Radosław Waśko
49b30f2e9d
Database Visualization Support ( #1582 )
2021-03-18 14:28:52 +01:00
Ara Adkins
e4e16a3da3
Fix the array visualisation and misc crashes ( #1588 )
2021-03-17 16:34:53 +00:00
Dmitry Bushev
35a0db19bc
Index Builtins Suggestions ( #1575 )
...
PR enables suggestions indexing for
the Builtins module
2021-03-17 13:07:49 +03:00
Radosław Waśko
21f667323e
PostgreSQL Support in Database Library ( #1565 )
...
Co-authored-by: Marcin Kostrzewa <marckostrzewa@gmail.com>
2021-03-16 17:53:04 +01:00
Ara Adkins
96697ddc97
Fix a crash due to shadowed project names ( #1571 )
2021-03-16 12:45:19 +00:00
Marcin Kostrzewa
ca90d9824a
Don't use thread interrupts to cancel executions ( #1574 )
2021-03-16 10:43:36 +01:00
Dmitry Bushev
b0680d0384
Add Locations Filter for Instrumented Locations ( #1564 )
...
PR adds the location filter that excludes lambdas
and local functions from the instrumentation.
2021-03-12 14:27:24 +03:00
Radosław Waśko
5f8af886e5
Connection and Materialization in the Database Library ( #1546 )
2021-03-09 19:52:42 +01:00
Marcin Kostrzewa
f298fbd3cf
R Interop ( #1559 )
2021-03-09 16:19:05 +01:00
Marcin Kostrzewa
03fa549daf
Python interop ( #1541 )
2021-03-05 12:18:37 +01:00
Ara Adkins
2b4f0ef2ad
Bump scalac to 2.13.5 ( #1531 )
2021-03-01 16:35:57 +00:00
Dmitry Bushev
2bba2ccfca
Fix Invalidation of Dynamic Dependencies ( #1532 )
...
Revert change from #1495 , where dynamic
dependencies come with external ids.
2021-03-01 18:23:04 +03:00
Marcin Kostrzewa
3a88be543f
Make panic messages short ( #1528 )
2021-03-01 14:46:05 +01:00
Ara Adkins
fea8856970
Additional fixes for parser crashes ( #1523 )
2021-02-26 13:17:53 +00:00
Dmitry Bushev
0c5a36283b
fix: lambda locations ( #1522 )
...
Reattach original locations during
the lambda desugaring
2021-02-26 12:59:21 +03:00
Dmitry Bushev
3bf566fdee
feat: invalidate method dependencies ( #1516 )
...
When the edit changes the method body, invalidate
all the method usages, and the corresponding
dependencies
2021-02-26 08:26:34 +03:00
Ara Adkins
37a64dd098
Desugar blanks in function position ( #1512 )
2021-02-25 11:44:13 +00:00
Dmitry Bushev
b79d5f95a6
Always Send Panic Updates ( #1508 )
...
Always send panic updates
2021-02-25 13:43:21 +03:00
Ara Adkins
2c5ed028aa
Band-aid the "template pattern segment" error ( #1509 )
2021-02-25 09:46:03 +00:00
Dmitry Bushev
51d5c5ebde
Analyze compiled modules ( #1507 )
...
PR changes the logic of EnsureCompiledJob to analyze
all compiled modules, disregarding its previous
compilation stage.
2021-02-25 11:29:23 +03:00
Marcin Kostrzewa
299c59826e
Fix the type of Type_Error's name field ( #1504 )
2021-02-24 14:53:11 +01:00
Marcin Kostrzewa
d1c127531e
Error message representations ( #1498 )
2021-02-22 17:25:53 +01:00
Ara Adkins
8ec2a92b77
Upgrade GraalVM to 21.0 ( #1487 )
2021-02-22 13:32:55 +00:00
Dmitry Bushev
dced7b96f6
Fix Dependency Analysis ( #1495 )
...
PR fixes dependency analysis on IR.Error nodes.
2021-02-19 19:38:13 +03:00
Dmitry Bushev
ad4d6286d5
Set Correct Payload for Dataflow Errors ( #1484 )
...
Set DataflowError payload for dataflow error updates.
2021-02-18 15:05:20 +03:00
Radosław Waśko
ef539b6ddf
Add Stack Traces in Tests ( #1482 )
...
Co-authored-by: Ara Adkins <iamrecursion@users.noreply.github.com>
2021-02-15 18:41:54 +01:00
Marcin Kostrzewa
c4a0772190
Polyglot JS Definitions ( #1451 )
2021-02-08 18:14:54 +01:00
Ara Adkins
af1aab35aa
Improve dataflow errors in the standard library ( #1446 )
2021-02-02 12:31:33 +00:00
Dmitry Bushev
f0115587b0
Handle PanicSentinel in Interpreter ( #1436 )
...
PR adds the ability to handle runtime exceptions
in the interpreter and continue the execution
passing the PanicSentinel value.
2021-02-02 12:02:00 +03:00
Marcin Kostrzewa
f2775176f7
Fluent Java Interop & Method Dispatch Refactor ( #1443 )
2021-02-01 15:56:20 +01:00
Ara Adkins
e83b18f828
Improve the handling of dataflow errors ( #1433 )
2021-01-27 13:41:19 +00:00
Ara Adkins
8c2f4652a0
Split up method resolution ( #1428 )
2021-01-25 17:53:37 +00:00
Dmitry Bushev
2515721799
Add API for dataflow errors ( #1422 )
2021-01-25 14:41:20 +00:00
Dmitry Bushev
4770e72734
Resolve Expression Ids for Errors ( #1405 )
...
PR adds the new executionContext/expressionUpdates
API that replaces executionContext/expressionValueUpdates
notification, and in the future will be extended to support
the dataflow errors.
2021-01-21 17:10:21 +03:00
Dmitry Bushev
e03e5315ff
Fix Dataflow Analysis of Undefined Variables ( #1421 )
...
* fix: dataflow analysis
* test: unefined variable
2021-01-20 18:08:54 +03:00
Dmitry Bushev
36480113d0
Add Null Check when Executing Host Values ( #1413 )
...
add: extra null check, because isNull doesn't allow
null arguments
2021-01-19 22:04:24 +03:00
Ara Adkins
b5b4dfa155
Add support for profiling information in the protocol ( #1407 )
2021-01-19 10:41:39 +00:00
Marcin Kostrzewa
197190ceeb
Remove UFCS ( #1398 )
2021-01-14 21:53:04 +01:00
Ara Adkins
a7bd90ab8f
Document the runtime's builtin functionality ( #1397 )
2021-01-14 15:31:15 +00:00
Marcin Kostrzewa
b751dfb3ec
Table: grouping ( #1392 )
2021-01-11 17:05:06 +01:00
Dmitry Bushev
7fd11847a4
Use Qualified Names in Runtime Updates ( #1376 )
...
Changelog:
- update: execution logic to use qualified names
- update: populate runtime updates with qualified names
- update: suggestions builder to use qualified names
2021-01-11 18:13:08 +03:00
Dmitry Bushev
e2b583c64a
Return Correct Name for the Module in AtomConstructor ( #1375 )
...
return the module name if it's the atom constructor of the module.
2021-01-11 14:29:50 +03:00
Dmitry Bushev
9083b90c52
Use Cached Value when Computing Visualizations ( #1378 )
...
PR adds an optimization to the visualization computing logic
2020-12-29 14:48:46 +03:00
Marcin Kostrzewa
0840ff546b
safepoint without invalidation ( #1367 )
2020-12-18 13:55:02 +01:00
Radosław Waśko
2e6a5af4fb
Split Installer Versions in Manifest ( #1355 )
2020-12-16 12:34:33 +01:00
Ara Adkins
2c12a18b25
Implement sorting for Vector
( #1349 )
2020-12-15 14:20:59 +00:00
Dmitry Bushev
c1369ad044
Fix EditFileCmd and locking ( #1343 )
...
Run actions outside of Future to utilize locking
2020-12-14 16:06:45 +03:00
Dmitry Bushev
75e3136221
dispose runtime listener ( #1338 )
...
Dispose the runtime listener on exception
2020-12-09 19:54:53 +03:00
Dmitry Bushev
95a345ee26
Misc Visualization Fixes ( #1328 )
...
add: missing to_json conversions
fix: NPE in instrumentation
fix: EditFileCmd scheduling
fix: send visualization errors to the text endpoint
fix: preserve original location in the VectorLiterals pass
2020-12-09 13:44:03 +03:00
Dmitry Bushev
d80089ab69
Fix Runtime Jobs Scheduling ( #1319 )
...
- fix the issue when duplicate execution jobs were never canceled.
- fix the issue in the file edit handler, when the edits can be received
in a different order.
2020-12-04 08:07:01 +03:00
Ara Adkins
bc09aafe7b
Add bitwise operations on Integer ( #1311 )
2020-12-03 10:41:21 +00:00
Dmitry Bushev
07190a729c
Add search/import command ( #1310 )
...
Add `search/import` request returning the info
required for module import.
2020-11-26 18:44:35 +03:00
Ara Adkins
e62f6796fe
Add the ability to split Text on word boundaries ( #1302 )
2020-11-20 13:29:34 +00:00