~ubuntu-branches/ubuntu/utopic/kdevelop-php/utopic

« back to all changes in this revision

Viewing changes to duchain/expressionparser.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-20 14:59:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101220145902-a6cmovse1qmue52p
Tags: 1.1.80-0ubuntu1
* New upstream release
* Build-dep on kdevplatform >= 1.1.80
* Get rid of l10n packages, not relevant in Ubuntu, put locale files into main package

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
}
48
48
 
49
49
ExpressionEvaluationResult ExpressionParser::evaluateType(const QByteArray& expression, DUContextPointer context,
50
 
                                                          const SimpleCursor &offset)
 
50
                                                          const CursorInRevision &offset)
51
51
{
52
52
    if (m_debug)
53
53
        kDebug() << "==== .Evaluating ..:" << endl << expression;
75
75
 
76
76
ExpressionEvaluationResult ExpressionParser::evaluateType(AstNode* ast, EditorIntegrator* editor)
77
77
{
78
 
    return evaluateType(ast, editor, SimpleCursor::invalid());
 
78
    return evaluateType(ast, editor, CursorInRevision::invalid());
79
79
}
80
80
 
81
81
ExpressionEvaluationResult ExpressionParser::evaluateType(AstNode* ast, EditorIntegrator* editor,
82
 
                                                          const SimpleCursor &offset)
 
82
                                                          const CursorInRevision &offset)
83
83
{
84
84
    if (m_debug) {
85
85
        kDebug() << "===== AST:";