Mercurial > hg > ishara
comparison update_class @ 36:9e7be347b3a0
Renamed sequence classes to avoid clashes with seq methods;
Fixed default slicing dimension while retaining behaviour of window.m;
Updated use of sequences in dsp/synth.
author | samer |
---|---|
date | Thu, 24 Jan 2013 14:51:23 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
35:f1ce7876346a | 36:9e7be347b3a0 |
---|---|
1 #!/bin/sh | |
2 cd "@$1" | |
3 cat > tmp <<EOF | |
4 classdef $1 < seq | |
5 properties (GetAccess=private, SetAccess=immutable) | |
6 end | |
7 methods | |
8 EOF | |
9 mkdir old | |
10 cat $1.m >> tmp | |
11 mv $1.m old | |
12 cat *.m >> tmp | |
13 mv *.m old | |
14 cat >> tmp <<EOF | |
15 end | |
16 end | |
17 EOF | |
18 mv old ../old/"@$1" | |
19 mv tmp $1.m | |
20 cd .. |