- Timestamp:
- Jun 29, 2017, 5:09:37 PM (6 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1abc5ab
- Parents:
- 2a7b3ca (diff), fe5c01d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- tools
- Files:
-
- 13 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/cfa.nanorc
r2a7b3ca r949934e 2 2 ## WIP 3 3 4 syntax "cfa" "\.cfa$" 5 ## No magic 4 syntax "cfa" "\.cfa" 6 5 7 6 # Macros … … 19 18 # Control Flow Structures 20 19 color brightyellow "\<(if|else|while|do|for|switch|choose|case|default)\>" 21 ##color brightyellow "\<(try|catch|catchResume|finally)\>"20 color brightyellow "\<(try|catch|catchResume|finally)\>" 22 21 23 22 # Control Flow Statements 24 color magenta "\<(return|break|continue|fallthru|throw )\>"23 color magenta "\<(return|break|continue|fallthru|throw|throwResume)\>" 25 24 26 25 # Operator Names … … 46 45 color brightmagenta "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'" 47 46 # Strings and Angle Strings 48 color brightyellow ""([^"]|\\")*"" "<[^[:blank:]=]*>"47 color yellow ""([^"]|\\")*"" "<[^[:blank:]=]*>" 49 48 # Multiline Strings: This regex is VERY expencive and often too strong. 50 49 ###color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" -
tools/repeat
r2a7b3ca r949934e 20 20 for (( i = 0; i < ITERATION; i ++ )); do 21 21 echo -ne "\r$i / $ITERATION" 22 $@ &22 $@ > /dev/null & 23 23 child=$! 24 24 wait "$child"
Note: See TracChangeset
for help on using the changeset viewer.