• Home
  • Raw
  • Download

Lines Matching refs:stmt

304 if_stmt1: IF expr[cond] THEN stmt[then] ELSE stmt.list[else] FI
306 if_stmt2: IF expr[cond] THEN stmt[then] FI
307 { $if_stmt2 = new IfStmt($cond, $stmt.field, 0); };
308 if_stmt3: IF expr[cond] THEN stmt.list FI
309 { $if_stmt3 = new IfStmt($cond, $stmt.list, 0); };
310 if_stmt4: IF expr[cond] THEN stmt[xyz] ELSE stmt[xyz] FI
312 if_stmt5: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
313 { $if_stmt5 = new IfStmt($cond, $stmt.list, $else); };
314 if_stmt6: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
315 { $if_stmt6 = new IfStmt($cond, $stmt.list.field, $else); };
316 if_stmt7: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
317 { $if_stmt7 = new IfStmt($cond, $[stmt.list].field, $else); };
318 if_stmt8: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
320 if_stmt9: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
322 if_stmt10: IF expr[cond] THEN stmt[stmt.x] FI
323 { $if_stmt10 = new IfStmt($cond, $stmt.x, 0); };
324 if-stmt-a: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
325 { $if-stmt-a = new IfStmt($cond, $then, $else); };
326 if-stmt-b: IF expr[cond] THEN if-stmt-a[then-a] ELSE stmt.list[else] FI
327 { $[if-stmt-b] = new IfStmt($cond, $then-a.f, $else); };
328 program: stmt.list;
329 stmt.list: stmt ';' stmt.list { $3->insert($stmt); $$ = $3; }
330 | stmt ';' { SL = new StmtList(); SL->insert($1); $$ = SL; }
332 stmt: assign_stmt { $$ = $1; }
339 if_stmt: IF expr[cond] THEN stmt.list FI
340 { $if_stmt = new IfStmt($cond, $[stmt.list], 0); };
341 while_stmt[res]: WHILE expr DO stmt.list OD
342 { $res = new WhileStmt($[expr], $[stmt.list]); };
358 test.y:26.43-53: error: invalid reference: '$stmt.field'
359 test.y:25.11-26.60: symbol not found in production: stmt
360 test.y:25.35-38: possibly meant: $then.field, hiding $stmt.field at $4
361 test.y:28.43-52: error: invalid reference: '$stmt.list'
362 test.y:27.11-28.59: symbol not found in production: stmt
363 test.y:27.30-38: possibly meant: $[stmt.list] at $4
367 test.y:32.43-52: error: invalid reference: '$stmt.list'
368 test.y:31.11-32.63: symbol not found in production: stmt
369 test.y:31.40-43: possibly meant: $then, hiding $[stmt.list] at $4
370 test.y:31.61-64: possibly meant: $else, hiding $[stmt.list] at $6
371 test.y:34.43-58: error: invalid reference: '$stmt.list.field'
372 test.y:33.11-34.69: symbol not found in production: stmt
373 test.y:33.40-43: possibly meant: $then.field, hiding $[stmt.list].field at $4
374 test.y:33.61-64: possibly meant: $else.field, hiding $[stmt.list].field at $6
375 test.y:36.43-54: error: invalid reference: '$[stmt.list]'
376 test.y:35.11-36.71: symbol not found in production: stmt.list
377 test.y:35.40-43: possibly meant: $then, hiding $[stmt.list] at $4
378 test.y:35.61-64: possibly meant: $else, hiding $[stmt.list] at $6
385 test.y:42.44-50: error: invalid reference: '$stmt.x'
386 test.y:41.12-42.57: symbol not found in production: stmt
387 test.y:41.36-41: possibly meant: $[stmt.x].x, hiding $stmt.x at $4
388 test.y:41.36-41: possibly meant: $[stmt.x] at $4
389 test.y:44.13-22: error: invalid reference: '$if-stmt-a'
391 test.y:43.1-9: possibly meant: $[if-stmt-a] at $$
402 if_stmt1: IF expr[cond] THEN stmt[then] ELSE stmt.list[else] FI
404 test.y:26.43-53: error: invalid reference: '$stmt.field'
405 { $if_stmt2 = new IfStmt($cond, $stmt.field, 0); };
407 test.y:25.11-26.60: symbol not found in production: stmt
408 if_stmt2: IF expr[cond] THEN stmt[then] FI
410 test.y:25.35-38: possibly meant: $then.field, hiding $stmt.field at $4
411 if_stmt2: IF expr[cond] THEN stmt[then] FI
413 test.y:28.43-52: error: invalid reference: '$stmt.list'
414 { $if_stmt3 = new IfStmt($cond, $stmt.list, 0); };
416 test.y:27.11-28.59: symbol not found in production: stmt
417 if_stmt3: IF expr[cond] THEN stmt.list FI
419 test.y:27.30-38: possibly meant: $[stmt.list] at $4
420 if_stmt3: IF expr[cond] THEN stmt.list FI
426 if_stmt4: IF expr[cond] THEN stmt[xyz] ELSE stmt[xyz] FI
429 if_stmt4: IF expr[cond] THEN stmt[xyz] ELSE stmt[xyz] FI
431 test.y:32.43-52: error: invalid reference: '$stmt.list'
432 { $if_stmt5 = new IfStmt($cond, $stmt.list, $else); };
434 test.y:31.11-32.63: symbol not found in production: stmt
435 if_stmt5: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
437 test.y:31.40-43: possibly meant: $then, hiding $[stmt.list] at $4
438 if_stmt5: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
440 test.y:31.61-64: possibly meant: $else, hiding $[stmt.list] at $6
441 if_stmt5: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
443 test.y:34.43-58: error: invalid reference: '$stmt.list.field'
444 { $if_stmt6 = new IfStmt($cond, $stmt.list.field, $else); };
446 test.y:33.11-34.69: symbol not found in production: stmt
447 if_stmt6: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
449 test.y:33.40-43: possibly meant: $then.field, hiding $[stmt.list].field at $4
450 if_stmt6: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
452 test.y:33.61-64: possibly meant: $else.field, hiding $[stmt.list].field at $6
453 if_stmt6: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
455 test.y:36.43-54: error: invalid reference: '$[stmt.list]'
456 { $if_stmt7 = new IfStmt($cond, $[stmt.list].field, $else); };
458 test.y:35.11-36.71: symbol not found in production: stmt.list
459 if_stmt7: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
461 test.y:35.40-43: possibly meant: $then, hiding $[stmt.list] at $4
462 if_stmt7: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
464 test.y:35.61-64: possibly meant: $else, hiding $[stmt.list] at $6
465 if_stmt7: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
471 if_stmt8: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
474 if_stmt8: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
480 if_stmt9: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
483 if_stmt9: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
485 test.y:42.44-50: error: invalid reference: '$stmt.x'
486 { $if_stmt10 = new IfStmt($cond, $stmt.x, 0); };
488 test.y:41.12-42.57: symbol not found in production: stmt
489 if_stmt10: IF expr[cond] THEN stmt[stmt.x] FI
491 test.y:41.36-41: possibly meant: $[stmt.x].x, hiding $stmt.x at $4
492 if_stmt10: IF expr[cond] THEN stmt[stmt.x] FI
494 test.y:41.36-41: possibly meant: $[stmt.x] at $4
495 if_stmt10: IF expr[cond] THEN stmt[stmt.x] FI
497 test.y:44.13-22: error: invalid reference: '$if-stmt-a'
498 { $if-stmt-a = new IfStmt($cond, $then, $else); };
501 if-stmt-a: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
503 test.y:43.1-9: possibly meant: $[if-stmt-a] at $$
504 if-stmt-a: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
507 { $[if-stmt-b] = new IfStmt($cond, $then-a.f, $else); };
510 if-stmt-b: IF expr[cond] THEN if-stmt-a[then-a] ELSE stmt.list[else] FI
513 if-stmt-b: IF expr[cond] THEN if-stmt-a[then-a] ELSE stmt.list[else] FI