World: r3wp
[Parse] Discussion of PARSE dialect
older newer | first last |
Anton 5-Nov-2008 [2733] | Right - so doing an extra bind may slow things down. |
BrianH 5-Nov-2008 [2734] | More importantly it will override the meaning of the RETURN function at a point where you would expect it to work. |
PeterWood 5-Nov-2008 [2735] | Clearly my proposal for START is based on my ignorance and inability to search the documents properly :-) It wouldn't hurt as a form of slef-documenting code, though. |
BrianH 5-Nov-2008 [2736] | Actually, I think it would hurt (no offence). The word start is a common name for parse rules and every keyword we add can't be used as a parse rule name. Something to consider when making proposals. |
Anton 5-Nov-2008 [2737] | Gabriele's DO command is interesting. I wonder why it could not become more "functional" and be used after the SET command, eg: SET result DO integer! |
BrianH 5-Nov-2008 [2738] | That DO proposal was the first one to be rejected. It will take some serious problems with dialecting to get it included. |
Anton 5-Nov-2008 [2739] | Perhaps, Peter, you could post a withdrawl for START on the blog. |
Chris 5-Nov-2008 [2740x2] | Re. 'start - could use 'head for the same purpose, it's consistent too with the series accessors... |
Other side of the coin, if 'end is a keyword, 'start is an intuitive companion. | |
BrianH 5-Nov-2008 [2742] | HEAD would be a better name for a directive to reset the position to the beginning of the data. That behavior would be more consistent with the series accessors :) |
Chris 5-Nov-2008 [2743] | 'head? |
BrianH 5-Nov-2008 [2744] | Are you checking whether the position is at the beginning of the series? |
Chris 5-Nov-2008 [2745x2] | Yep. |
That's my interpretation of the 'start proposal. | |
BrianH 5-Nov-2008 [2747] | It was an initialization proposal. Nonetheless, your HEAD? proposal sounds interesting. What problem are you solving that would need such a directive? |
Anton 5-Nov-2008 [2748] | Hmmm... I don't see why it's *necessary*. It doesn't add any functionality - it just bulks up the parse dialect with an extra keyword. |
BrianH 5-Nov-2008 [2749] | At the beginning of the rule you are already at the head of the series, unless the data was already offset. Would you need HEAD? in the middle of the rule to determine if anything was matched already? |
Chris 5-Nov-2008 [2750] | I was just commenting on word usage per the above examples... |
Pekr 5-Nov-2008 [2751] | Anton - but there is some point in time we should start to make rebol bigger by adding unnecessary things, or we will never reach 100MB executable size and outer world migt not consider us being a rellevant alternative :-) |
BrianH 5-Nov-2008 [2752] | I don't think this is quite one of those situations, Petr :) |
Chris 5-Nov-2008 [2753] | Unless we used looong words : ) |
Anton 5-Nov-2008 [2754] | One NOP keyword at a time :) |
Graham 5-Nov-2008 [2755] | do what Carl does ........... and use one letter variables |
BrianH 5-Nov-2008 [2756] | Didn't you get Carl's simplicity blog? It was posted on Reddit and PLNews :) |
Graham 5-Nov-2008 [2757x2] | can you use unicode for variable names? I guess so ... |
allows for me one letter variables available | |
BrianH 5-Nov-2008 [2759] | Yes, you will be able to use Unicode for variable names. I wouldn't suggest it though: You have to use Character Map to enter half of Perl 6's operators because they did exactly what you suggested :( |
Graham 5-Nov-2008 [2760] | Must be Carl's driving force to implement unicode |
PeterWood 5-Nov-2008 [2761] | I think Anton is correct about Return...the Return should preceed the bracket: eg end return ("the return value") is mch better than end (return "the return value"). |
Anton 5-Nov-2008 [2762] | I just followed Brian on that. |
BrianH 5-Nov-2008 [2763] | I was thinking that you not even have the parens at all, and just have RETURN rule. |
Anton 5-Nov-2008 [2764] | ie. return [ rule ... ] |
BrianH 5-Nov-2008 [2765] | That way you could do this to return the first HTML tag from data: [to "<" return thru ">"] |
Chris 5-Nov-2008 [2766] | So that would replace 'true? |
BrianH 5-Nov-2008 [2767x2] | Yup. |
In particular, it would return a copy, like the COPY directive, not the SET directive. | |
Chris 5-Nov-2008 [2769] | Like! Would that work for values? -- [to "<" copy a thru ">" "<" return a] ; - returns a if there is a < next? |
Anton 5-Nov-2008 [2770] | What would you do when you need to process the data a bit first ? eg. You return tags from different places in a rule, and to distinguish them you need to also return something extra, by prepending a code to the beginning, for example. |
BrianH 5-Nov-2008 [2771x2] | That's what code in parens is for. The USE directive will make that safer. |
I don't think that returning values would really work because named rules are values. | |
Anton 5-Nov-2008 [2773x2] | Yes, you're right. Can be achieved with parens, of course. |
Looking forward to using USE. | |
BrianH 5-Nov-2008 [2775] | Carl was kinda weirded out by the modifying operations, but I pointed out that people do this anyway and get it wrong a lot. |
Anton 5-Nov-2008 [2776] | Really ? They look so useful ! |
BrianH 5-Nov-2008 [2777] | They do, but he was weirded out by the idea of PARSE modifying its data in place. Apparently he doesn't do that :) |
Anton 5-Nov-2008 [2778x2] | (We can live without them, though.) |
What's wrong with that ? Isn't that what RNA does ? | |
BrianH 5-Nov-2008 [2780] | They're going in. If we were just doing what Carl wants, he wouldn't need to ask for suggestions and ask me to compile them. |
Anton 5-Nov-2008 [2781x2] | (I mean enzymes that process RNA..) |
You mean, Carl has already accepted them ? | |
older newer | first last |