diff --git a/2d-doc/info.rkt b/2d-doc/info.rkt index 92b2336..8c8eb90 100644 --- a/2d-doc/info.rkt +++ b/2d-doc/info.rkt @@ -3,7 +3,10 @@ (define collection "2d") (define version "1.0") (define deps '("base" "2d-lib")) -(define build-deps '("scribble-lib" "racket-doc")) +(define build-deps '("scribble-lib" + "racket-doc" + "syntax-color-doc" + "syntax-color-lib")) (define pkg-desc "Documentation part of \"2d\"") (define pkg-authors '(robby)) diff --git a/2d-doc/scribblings/2d.scrbl b/2d-doc/scribblings/2d.scrbl index fd65fcb..8a33d01 100644 --- a/2d-doc/scribblings/2d.scrbl +++ b/2d-doc/scribblings/2d.scrbl @@ -2,8 +2,10 @@ @(require scribble/base scribble/manual scribble/core + scribble/example (for-label 2d/cond 2d/match + syntax-color/lexer-contract racket/file racket/contract racket/base)) @@ -11,7 +13,9 @@ @title[#:tag "2d"]{2D Syntax} @defmodulelang[2d]{The @racketmodname[2d] language installs -@litchar{#2d} reader support in the readtable, and then chains to the reader of +@litchar{#2d} reader support in the +@tech[#:doc '(lib "scribblings/reference/reference.scrbl")]{readtables}, +and then chains to the reader of another language that is specified immediately after @racketmodname[2d].} @@ -267,3 +271,79 @@ See @seclink["Keyboard Shortcuts" #:doc '(lib "scribblings/drracket/drracket.scr columns (as @litchar{#2d} syntax requires that the first row contain a cell for each column that appears in the table). } + +@section{2D Readtable} + +@defmodule[2d/readtable] + +@defproc[(make-readtable) readtable?]{ + Builds a @racket[readtable?] that recognizes @litchar{#2d} and turns it into + a parenthesized form as discussed in @secref["2d"]. +} + +@defproc[(2d-readtable-dispatch-proc + [char char?] + [port input-port?] + [source any/c] + [line (or/c exact-positive-integer? #f)] + [column (or/c exact-nonnegative-integer? #f)] + [position (or/c exact-positive-integer? #f)] + [/recursive (-> input-port? any/c (or/c readtable? #f) any/c)] + [readtable (or/c #f readtable?)]) + any/c]{ + The function that implements @racket[make-readtable]'s functionality. The + @racket[/recursive] function is used to handle the content in the cells. + + See the docs + on @tech[#:doc '(lib "scribblings/reference/reference.scrbl")]{readtables} for more information. +} + +@section{2d Lexer} + +@defmodule[2d/lexer] + +@defproc[(2d-lexer [sub lexer/c]) lexer/c]{ + Constructs a @racket[lexer/c] given one that handles + lexing inside the cells. +} + +@section{2D Direction Chars} + +@defmodule[2d/dir-chars] + +@(define 2dchars-eval (make-base-eval '(require 2d/dir-chars))) + +This library provides definitions of the characters that are looked for when +parsing 2d syntax. + +@(define-syntax-rule + (doc-chars id . stuff) + (begin + @(defthing id (listof char?) . stuff) + @examples[#:label #f #:eval 2dchars-eval id])) + +@doc-chars[adjustable-chars]{ + These are the characters that are considered either to be part of 2d rectangle + or characters that could be part of one, possibly fixed by up a DrRacket keybinding. +} + +@doc-chars[double-barred-chars]{ + These are all of the @racket[adjustable-chars], except those that are regular ASCII. +} + +@doc-chars[up-chars]{ + All of the 2d chars that connect to the line above. +} + +@doc-chars[dn-chars]{ + All of the 2d chars that connect to the line below. +} + +@doc-chars[lt-chars]{ + All of the 2d chars that connect to the next char. +} + +@doc-chars[rt-chars]{ + All of the 2d chars that connect to the previous char. +} + diff --git a/2d-lib/info.rkt b/2d-lib/info.rkt index 16b0afc..e554a44 100644 --- a/2d-lib/info.rkt +++ b/2d-lib/info.rkt @@ -1,7 +1,7 @@ #lang info (define collection "2d") -(define version "1.0") +(define version "1.1") (define deps '("base" "scribble-lib" "syntax-color-lib")) diff --git a/2d-lib/private/readtable.rkt b/2d-lib/private/readtable.rkt index 254fc76..1fcd673 100644 --- a/2d-lib/private/readtable.rkt +++ b/2d-lib/private/readtable.rkt @@ -20,7 +20,8 @@ example uses: racket/port) -(provide make-2d-readtable) +(provide make-2d-readtable + 2d-readtable-dispatch-proc) (define (make-2d-readtable) (define previous-readtable (current-readtable)) @@ -35,16 +36,16 @@ example uses: ;; the "-2"s here are because the initial line and column ;; are supposed be at the beginning of the thing read, not ;; after the "#2" has been consumed. - (dispatch-proc char port #f line - (and col (- col 2)) - (and pos (- pos 2)) - read/recursive previous-readtable)] + (2d-readtable-dispatch-proc char port #f line + (and col (- col 2)) + (and pos (- pos 2)) + read/recursive previous-readtable)] [(char port source _line _col _pos) - (dispatch-proc char port source _line _col _pos - (λ (a b c) (read-syntax/recursive source a b c)) - previous-readtable)]))) + (2d-readtable-dispatch-proc char port source _line _col _pos + (λ (a b c) (read-syntax/recursive source a b c)) + previous-readtable)]))) -(define (dispatch-proc char port source _line _col _pos /recursive previous-readtable) +(define (2d-readtable-dispatch-proc char port source _line _col _pos /recursive previous-readtable) (define next-char (peek-char port)) (cond [(equal? next-char #\d) diff --git a/2d-lib/readtable.rkt b/2d-lib/readtable.rkt new file mode 100644 index 0000000..5180192 --- /dev/null +++ b/2d-lib/readtable.rkt @@ -0,0 +1,15 @@ +#lang racket/base + +(require "private/readtable.rkt" + racket/contract) +(provide + (contract-out + [2d-readtable-dispatch-proc + (-> char? input-port? any/c + (or/c exact-positive-integer? #f) + (or/c exact-nonnegative-integer? #f) + (or/c exact-positive-integer? #f) + (-> input-port? any/c (or/c readtable? #f) any/c) + (or/c #f readtable?) + any/c)]) + make-readtable) diff --git a/2d-test/info.rkt b/2d-test/info.rkt index ea7c702..be1777c 100644 --- a/2d-test/info.rkt +++ b/2d-test/info.rkt @@ -2,7 +2,7 @@ (define collection "2d") (define version "1.0") -(define deps '("base" "2d-lib")) +(define deps '("base" "2d-lib" "racket-index")) (define build-deps '("rackunit-lib" "option-contract-lib" "at-exp-lib" diff --git a/2d-test/tests/docs-complete.rkt b/2d-test/tests/docs-complete.rkt new file mode 100644 index 0000000..5e256c5 --- /dev/null +++ b/2d-test/tests/docs-complete.rkt @@ -0,0 +1,8 @@ +#lang racket/base +(require rackunit/docs-complete) +(check-docs '2d/cond) +(check-docs '2d/dir-chars) +(check-docs '2d/lexer) +(check-docs '2d/match) +(check-docs '2d/readtable) +(check-docs '2d/tabular)