Commit Graph

28 Commits

Author SHA1 Message Date
f70c6d5d48 Extract nu_source into a crate
This commit extracts Tag, Span, Text, as well as source-related debug
facilities into a new crate called nu_source.

This change is much bigger than one might have expected because the
previous code relied heavily on implementing inherent methods on
`Tagged<T>` and `Spanned<T>`, which is no longer possible.

As a result, this change creates more concrete types instead of using
`Tagged<T>`. One notable example: Tagged<Value> became Value, and Value
became UntaggedValue.

This change clarifies the intent of the code in many places, but it does
make it a big change.
2019-11-25 07:37:33 -08:00
4329629ee9 baseline coverage for xml parsing. 2019-10-22 03:47:59 -05:00
193b00764b Stream support (#812)
* Moves off of draining between filters. Instead, the sink will pull on the stream, and will drain element-wise. This moves the whole stream to being lazy.
* Adds ctrl-c support and connects it into some of the key points where we pull on the stream. If a ctrl-c is detect, we immediately halt pulling on the stream and return to the prompt.
* Moves away from having a SourceMap where anchor locations are stored. Now AnchorLocation is kept directly in the Tag.
* To make this possible, split tag and span. Span is largely used in the parser and is copyable. Tag is now no longer copyable.
2019-10-13 17:12:43 +13:00
9891e5ab81 Use async-stream crate to replace most async_stream_block invocations 2019-09-26 02:39:20 +02:00
ab915f1c44 Revert "Revert "Migrate most uses of the Span concept to Tag""
This reverts commit bee7c5639c.
2019-09-14 11:30:24 -05:00
bee7c5639c Revert "Migrate most uses of the Span concept to Tag" 2019-09-11 19:53:05 +12:00
58b7800172 Migrate most uses of the Span concept to Tag
Also migrate mv, rm and commands like that to taking a
SyntaxType::Pattern instead of a SyntaxType::Path for their first
argument.
2019-09-10 20:41:03 -07:00
dcd97b6346 Move internal terminology to tables/rows 2019-09-06 04:23:42 +12:00
ca0c6eaf58 This commit introduces a basic help feature. We can go to it
with the `help` command to explore and list all commands available.

Enter will also try to see if the location to be entered is an existing
Nu command, if it is it will let you inspect the command under `help`.

This provides baseline needed so we can iterate on it.
2019-08-31 19:06:11 -05:00
bb794dcfec Add expansion to from-* for lists 2019-08-24 19:38:38 +12:00
e3e4e30fb3 Lots of fixes ahead of release 2019-08-21 18:39:57 +12:00
d71206ed9e Implement WholeStreamCommand for all remaining commands 2019-08-19 15:16:39 +10:00
aadacc2d36 Merge master 2019-08-09 16:51:21 +12:00
99671b8ffc Move more parts to tags and away from spans 2019-08-05 20:54:29 +12:00
462f783fac initial change to Tagged<Value> 2019-08-01 13:58:42 +12:00
5a8e041a48 Tests pass! 2019-07-23 15:22:11 -07:00
15507f00fc Introduce CallInfo, which abstracts args, name_span, and source_map 2019-07-20 14:27:10 +12:00
6bf55c0f1e Remove more dead code and clean up JSON 2019-07-12 19:20:26 -07:00
7c2a1c619e Tests pass 2019-07-12 19:20:26 -07:00
2da12aed56 Tests pass 2019-07-12 19:20:26 -07:00
7b68739b52 WIP 2019-07-12 19:20:26 -07:00
34033afce4 WIP improve error infrastructure
Also simplify commands and reduce papercuts
2019-07-12 19:20:26 -07:00
0180769971 WIP now load plugins automatically 2019-07-04 05:37:09 +12:00
d0860837d2 Merge branch 'nom2' into nom4 2019-06-22 18:20:13 -04:00
4036bf1ffd &str -> Text 2019-06-22 16:46:16 -04:00
eae83d85d2 Add more error checking 2019-06-16 11:03:49 +12:00
54be5bf16e Update errors and improve ctrl-c 2019-06-16 06:36:17 +12:00
7642541755 Add xml open support 2019-06-11 18:26:03 +12:00