File: test175.thp

package info (click to toggle)
theme-d 7.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,036 kB
  • sloc: lisp: 9,625; sh: 5,321; makefile: 715; ansic: 477
file content (76 lines) | stat: -rw-r--r-- 1,908 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
;; -*-theme-d-*-

;; Copyright (C) 2008-2013 Tommi Höynälänmaa
;; Distributed under GNU General Public License version 3,
;; see file doc/GPL-3.

;; Expected results: translation and running OK


(define-proper-program (tests test175)


  (import (standard-library core)
	  (standard-library string-utilities)
	  (standard-library console-io))


  (declare <my-tree> <normal-class>)


  (define-class <my-tree>
    (fields
     (node-value <integer> public public)
     (subtrees (:uniform-list <my-tree>) public public)))

  
  (declare get-prefix (:procedure (<integer>) <string> pure))


  (define get-prefix
    (lambda (((level <integer>)) <string> force-pure)
      (if (<= level 0)
	  ""
	  (string-append "  " (get-prefix (- level 1))))))


  (declare do-display-my-tree
	   (:procedure (<my-tree> <integer>) <none> nonpure))


  (define do-display-my-tree
    (lambda (((tree <my-tree>) (level <integer>)) <none> nonpure)
      (let ((prefix <string> (get-prefix level)))
	(console-display prefix)
	(console-display (field-ref tree 'node-value))
	(console-newline)
	(let-mutable ((cur-subtrees (:uniform-list <my-tree>) 
				    (field-ref tree 'subtrees)))
	  (until ((equal? cur-subtrees null))
	    (let ((cur-subtrees1
		   (cast (:nonempty-uniform-list <my-tree>)
			 cur-subtrees)))
	      (do-display-my-tree (car cur-subtrees1)
				  (+ level 1))
	      (set! cur-subtrees (cdr cur-subtrees1))))))))


  (define display-my-tree
    (lambda (((tree <my-tree>)) <none> nonpure)
      (do-display-my-tree tree 0)))


  (define main
    (lambda (() <integer> nonpure)
      (let ((my-tree
      	     (create <my-tree>
      	       1
      	       (list
      	     	(create <my-tree> 2 null)
      	     	(create <my-tree>
      	     	  3
      	     	  (list
      	     	   (create <my-tree> 4 null)
      	     	   (create <my-tree> 5 null)))))))
	(display-my-tree my-tree))
      0)))