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

« back to all changes in this revision

Viewing changes to duchain/expressionparser.h

  • 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:
53
53
     * @see ExpressionVisitor
54
54
     */
55
55
    ExpressionEvaluationResult evaluateType(const QByteArray& expression, KDevelop::DUContextPointer context,
56
 
                                            const KDevelop::SimpleCursor &offset);
 
56
                                            const KDevelop::CursorInRevision &offset);
57
57
    /**
58
58
     * Sets up an ExpressionVisitor and returns it's result when visiting @p ast .
59
59
     *
67
67
     * for the offset, because we _never_ want to use this directly.
68
68
     */
69
69
    ExpressionEvaluationResult evaluateType(AstNode* ast, EditorIntegrator* editor,
70
 
                                            const KDevelop::SimpleCursor &offset);
 
70
                                            const KDevelop::CursorInRevision &offset);
71
71
    bool m_debug;
72
72
    bool m_createProblems;
73
73
};