AST.py (8453:82fc1267d3bb) AST.py (9171:ae88ecf37145)
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;

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

51
52 def embedError(self, message, *args):
53 if args:
54 message = message % args
55 code = self.slicc.codeFormatter()
56 code('''
57char c;
58cerr << "Runtime Error at ${{self.location}}, Ruby Time: "
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;

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

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