Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readsOfPropertiesNamed (0.19 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/intercept/InterceptScopeTest.groovy

            expect:
            firstScope == secondScope
    
            where:
            firstScope                                        | secondScope
            InterceptScope.readsOfPropertiesNamed("property") | InterceptScope.readsOfPropertiesNamed("property")
            InterceptScope.methodsNamed("method")             | InterceptScope.methodsNamed("method")
        }
    
        def "#firstScope and #secondScope with different names are not equal"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 03 11:20:13 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

         *
         * @param propertyName the name of the property to intercept reads of
         * @return the scope object
         */
        public static InterceptScope readsOfPropertiesNamed(String propertyName) {
            return new NamedMemberScope(CallType.GET_PROPERTY, propertyName);
        }
    
        /**
         * The returned scope includes writes of all properties named {@code propertyName}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top