summary refs log tree commit diff stats
path: root/tests/stdlib/txmltree.nim
Commit message (Collapse)AuthorAgeFilesLines
* stdlib tests now check refc too (#21664)ringabout2023-04-211-0/+4
| | | | | | | | | | | * stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
* Fix: #21541. Add support for xnVerbatimText (#21542)Mark Leyva2023-03-201-0/+15
| | | | to text and text= procs. Remove unnecessary LF for xnVerbatimText in $ proc.
* fixes #21290; deindent if the last same level is a text node (#21293)ringabout2023-01-241-1/+17
| | | | | * fixes #21290; deindent if the last same level is a text node * add one more test
* make more standard libraries work with `nimPreviewSlimSystem` (#20343)ringabout2022-09-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | * make more standard libraries work with `nimPreviewSlimSystem` * typo * part two * Delete specutils.nim * fixes more tests * more fixes * fixes tests * fixes three more tests * add formatfloat import * fix * last
* use doAssert in tests (#16486)flywind2020-12-281-9/+9
|
* xmltree minor improvement (#16085)flywind2020-11-211-0/+85
|
* merge stdlib tests (#9439)Miran2018-10-191-27/+0
|
* Rewrite xmltools.innerTextDmitry Polienko2016-11-301-2/+16
| | | | Make it recursive, define for node types other than xnElement
* further adaptationsAraq2014-08-291-2/+2
|
* new tester; all tests categorizedAraq2014-01-131-0/+13
w"> object of PPassContext config: ConfigRef proc verboseOpen(graph: ModuleGraph; s: PSym): PPassContext = #MessageOut('compiling ' + s.name.s); result = VerboseRef(config: graph.config) rawMessage(graph.config, hintProcessing, s.name.s) proc verboseProcess(context: PPassContext, n: PNode): PNode = result = n let v = VerboseRef(context) if v.config.verbosity == 3: # system.nim deactivates all hints, for verbosity:3 we want the processing # messages nonetheless, so we activate them again (but honor cmdlineNotes) v.config.setNote(hintProcessing) message(v.config, n.info, hintProcessing, $idgen.gFrontEndId) const verbosePass* = makePass(open = verboseOpen, process = verboseProcess)