diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/example2.msc | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/example2.msc')
-rw-r--r-- | tests/examplefiles/example2.msc | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/tests/examplefiles/example2.msc b/tests/examplefiles/example2.msc deleted file mode 100644 index 61e2ef83..00000000 --- a/tests/examplefiles/example2.msc +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/mscgen -Tpng -# -# testinput2.msc : Sample msc input file with URLs -# -# This file is PUBLIC DOMAIN and may be freely reproduced, distributed, -# transmitted, used, modified, built upon, or otherwise exploited by -# anyone for any purpose, commercial or non-commercial, and in any way, -# including by methods that have not yet been invented or conceived. -# -# This file is provided "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER -# EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -# - -# Note: This is from mscgen-0.20 - -msc { - -A,B; - ---- [label="Start", ID="1"]; - -A->B [label="signal"]; -A<-B [label="signal"]; - - -A=>B [label="method"]; -A<=B [label="method"]; - -A>>B [label="return"]; -A<<B [label="return"]; - -A=>>B [label="call-back"]; -A<<=B [label="call-back", URL="www.google.com"]; - -A x- B [label="loss"]; -A -x B [label="loss"]; - ---- [label="Left arcs", ID="2", IDURL="www.google.co.uk"]; - -A->A [label="signal"]; -A<-A [label="signal"]; - - -A=>A [label="method"]; -A<=A [label="method"]; - -A>>A [label="return"]; -A<<A [label="return"]; - -A=>>A [label="call-back"]; -A<<=A [label="call-back", URL="www.google.com", ID="3"]; - -A x- A [label="loss"]; -A -x A [label="loss"]; - ---- [label="Right arcs"]; - -B->B [label="signal"]; -B<-B [label="signal"]; - - -B=>B [label="method"]; -B<=B [label="method"]; - -B>>B [label="return"]; -B<<B [label="return"]; - -B=>>B [label="call-back", ID="4"]; -B<<=B [label="call-back", URL="www.google.com"]; - -B x- B [label="loss"]; -B -x B [label="loss"]; - ---- [label="End of arcs", URL="www.google.com"]; - - -... [label="Some time passes", URL="www.google.com"]; -} |