AST.py (6999:f226c098c393) AST.py (7007:79413d1ec307)
1# Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
2# Copyright (c) 2009 The Hewlett-Packard Development Company
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 40 unchanged lines hidden (view full) ---

49 def error(self, message, *args):
50 self.location.error(message, *args)
51
52 def embedError(self, message, *args):
53 if args:
54 message = message % args
55 code = self.slicc.codeFormatter()
56 code('''
1# Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
2# Copyright (c) 2009 The Hewlett-Packard Development Company
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 40 unchanged lines hidden (view full) ---

49 def error(self, message, *args):
50 self.location.error(message, *args)
51
52 def embedError(self, message, *args):
53 if args:
54 message = message % args
55 code = self.slicc.codeFormatter()
56 code('''
57cerr << "Runtime Error at ${{self.location}}, Ruby Time: " << g_eventQueue_ptr->getTime() << ": "<< $message << ", PID: " << getpid() << endl;
58char c; cerr << "press return to continue." << endl; cin.get(c); abort();
57char c;
58cerr << "Runtime Error at ${{self.location}}, Ruby Time: "
59 << g_eventQueue_ptr->getTime() << ": "
60 << $message
61 << ", PID: " << getpid() << endl
62 << "press return to continue." << endl;
63cin.get(c);
64abort();
59''')
60
61 return code
65''')
66
67 return code